diff options
author | David Thompson <davet@gnu.org> | 2015-06-02 08:48:16 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-07-09 08:23:03 -0400 |
commit | c1f6a0c2ed8caa5b04aae77e5d2e3a2299305a43 (patch) | |
tree | e9641afa1af47836057b6fc9d18f10c88da92ace /.dir-locals.el | |
parent | 85c3127fa9226ff9efa504dddffcf8442f54488d (diff) | |
download | patches-c1f6a0c2ed8caa5b04aae77e5d2e3a2299305a43.tar patches-c1f6a0c2ed8caa5b04aae77e5d2e3a2299305a43.tar.gz |
gnu: build: Add Linux container module.
* gnu/build/linux-container.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* .dir-locals.el: Add Scheme indent rules for 'call-with-container', and
'container-excursion'.
* tests/containers.scm: New file.
* Makefile.am (SCM_TESTS): Add it.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index cbcb120edf..54d5bdaefc 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -59,6 +59,9 @@ (eval . (put 'run-with-state 'scheme-indent-function 1)) (eval . (put 'wrap-program 'scheme-indent-function 1)) + (eval . (put 'call-with-container 'scheme-indent-function 1)) + (eval . (put 'container-excursion 'scheme-indent-function 1)) + ;; Recognize '~', '+', and '$', as used for gexps, as quotation symbols. ;; This notably allows '(' in Paredit to not insert a space when the ;; preceding symbol is one of these. |