diff options
author | David Thompson <dthompson2@worcester.edu> | 2017-05-02 22:38:25 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2017-05-02 22:38:25 -0400 |
commit | 499a07155e137c40589b8c8383ffa6c942ce15d6 (patch) | |
tree | f66e38c50916f664e61a46a0890bf6db110d970b /.dir-locals.el | |
parent | dd8cf4614b6734cbd83d94a50b076a5e542c3aa4 (diff) |
Add buffer module.
* chickadee/buffer.scm: New file.
* Makefile.am (SOURCES): Add it.
* .dir-locals.el: Add indent rules for with-buffer and
with-current-buffer.
* examples/buffer.scm: New file.
* doc/api.texi (Buffers): Add docs.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 540a9b0..f5d370b 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -12,4 +12,6 @@ (eval . (put 'uniform-let 'scheme-indent-function 1)) (eval . (put 'call-with-surface 'scheme-indent-function 1)) (eval . (put 'with-new-rect 'scheme-indent-function 1)) - (eval . (put 'with-new-vec2 'scheme-indent-function 1))))) + (eval . (put 'with-new-vec2 'scheme-indent-function 1)) + (eval . (put 'with-buffer 'scheme-indent-function 1)) + (eval . (put 'with-current-buffer 'scheme-indent-function 1))))) |