diff options
author | Arun Isaac | 2024-09-10 17:11:00 +0100 |
---|---|---|
committer | Arun Isaac | 2024-09-10 17:11:00 +0100 |
commit | 42174ce117ec81a346d2c1cb8027fd0242a817ad (patch) | |
tree | cdba88c0a6a0caae078dc5973612bc6f7d96099a | |
parent | a7cad293400c20827e3b7d5211f50f1d71288f4f (diff) | |
download | ravanan-42174ce117ec81a346d2c1cb8027fd0242a817ad.tar.gz ravanan-42174ce117ec81a346d2c1cb8027fd0242a817ad.tar.lz ravanan-42174ce117ec81a346d2c1cb8027fd0242a817ad.zip |
dir-locals: Set fill-column to 80 only in scheme-mode.
For other major modes, especially in magit commit message buffers, we
want the default fill-column of 70.
* .dir-locals.el (nil)[fill-column]: Move to scheme-mode.
-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 dd2a894..9484927 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -2,11 +2,11 @@ ;;; For more information see (info "(emacs) Directory Variables") ((nil - (fill-column . 80) (indent-tabs-mode)) (makefile-gmake-mode (indent-tabs-mode t)) (scheme-mode + (fill-column . 80) (eval . (put 'assoc-set 'scheme-indent-function 1)) (eval . (put 'build-gexp-script 'scheme-indent-function 1)) (eval . (put 'call-with-current-directory 'scheme-indent-function 1)) |