summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2016-04-18 20:39:39 -0400
committerDavid Thompson <dthompson2@worcester.edu>2016-04-18 20:39:39 -0400
commit9972e5c26da25c29939e5a75f59db5d58c14a31c (patch)
tree498b4a906b7afe4105b3677d2e5f5c7fa075c7cd /.dir-locals.el
parent049964583b191f2302ff666f97ca23417b80762e (diff)
Add actor module.
* sly/actor.scm: New file. * Makefile.am (SOURCES): Add it. * doc/api/scripting.texi: New file. * doc/Makefile.am (sly_TEXINFOS): Add it. * doc/sly.texi: Include scripting section. * .dir-locals.el: Add identing rule for call-with-actor.
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index b4034ae..d7f9186 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -27,4 +27,5 @@
(eval . (put 'call-with-surface 'scheme-indent-function 1))
(eval . (put 'render/signal 'scheme-indent-function 1))
(eval . (put 'with-graphics 'scheme-indent-function 1))
- (eval . (put 'with-gl-bind-texture 'scheme-indent-function 2)))))
+ (eval . (put 'with-gl-bind-texture 'scheme-indent-function 2))
+ (eval . (put 'call-with-actor 'scheme-indent-function 1)))))