diff options
author | Mark H Weaver <mhw@netris.org> | 2013-10-29 12:19:44 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2013-10-29 12:19:44 -0400 |
commit | 2a8417ac443f92503aefadca3a97e87e370b4897 (patch) | |
tree | 25251d95f04e85b0a4fbf9ffc0b0722594ef0f70 | |
parent | cb558fcd9c3818c20232305630acd6a18039318b (diff) | |
download | patches-2a8417ac443f92503aefadca3a97e87e370b4897.tar patches-2a8417ac443f92503aefadca3a97e87e370b4897.tar.gz |
Change indentation rule for 'package' for the common case.
* .dir-locals.el: Change the indentation rule for 'package' to do the right
thing for packages without an inherit clause.
-rw-r--r-- | .dir-locals.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index b55ec7590e..dc1a3d724d 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -13,7 +13,7 @@ (eval . (put 'lambda* 'scheme-indent-function 1)) (eval . (put 'substitute* 'scheme-indent-function 1)) (eval . (put 'with-directory-excursion 'scheme-indent-function 1)) - (eval . (put 'package 'scheme-indent-function 1)) + (eval . (put 'package 'scheme-indent-function 0)) (eval . (put 'substitute-keyword-arguments 'scheme-indent-function 1)) (eval . (put 'with-error-handling 'scheme-indent-function 0)) (eval . (put 'with-mutex 'scheme-indent-function 1)) |