diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2015-09-07 00:00:31 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-05-07 16:17:52 +0200 |
commit | f2c56d355f883dd60aef020b4e363739aeff856c (patch) | |
tree | f1aaa51f1f12f20c8563b9eab2097f4b8978ae2b /.dir-locals.el | |
parent | b2718d2cc9a70eda04822b7c8e11aa3e5fabface (diff) | |
download | mcron-f2c56d355f883dd60aef020b4e363739aeff856c.tar.gz mcron-f2c56d355f883dd60aef020b4e363739aeff856c.tar.bz2 mcron-f2c56d355f883dd60aef020b4e363739aeff856c.zip |
all: Add a custom indentation rule for 'mcron-error'.
* .dir-locals.el: Define a custom indentation rule for 'mcron-error'.
* scm/mcron/crontab.scm: Use it.
* scm/mcron/job-specifier.scm: Likewise.
* scm/mcron/main.scm: Likewise.
* scm/mcron/vixie-specification.scm: Likewise.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 12a5eb5..c94ea0c 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -4,4 +4,7 @@ (tab-width . 8))) (c-mode . ((c-file-style . "gnu") (indent-tabs-mode . nil))) - (scheme-mode . ((indent-tabs-mode . nil)))) + (scheme-mode + . + ((indent-tabs-mode . nil) + (eval . (put 'mcron-error 'scheme-indent-function 1))))) |