diff options
author | thdox <thdox@free.fr> | 2016-11-01 18:34:45 +0100 |
---|---|---|
committer | thdox <thdox@free.fr> | 2017-01-05 20:16:27 +0100 |
commit | 8b05eaf26f6b74801ed8a7ad04f0f87180773008 (patch) | |
tree | 0b33cd2b8c08083a2db1540799a7e370378a403e /.dir-locals.el | |
parent | 9432937f5c331b83e06a6489042e223a5904ca74 (diff) | |
download | fork-ledger-8b05eaf26f6b74801ed8a7ad04f0f87180773008.tar.gz fork-ledger-8b05eaf26f6b74801ed8a7ad04f0f87180773008.tar.bz2 fork-ledger-8b05eaf26f6b74801ed8a7ad04f0f87180773008.zip |
Fix indent-tabs-mode to nil
Probably a bug in Emacs:
- This add 't' in .dir-locals.el
M-x add-dir-local-variable RET emacs-lisp-mode RET indent-tabs-mode RET t RET
- This does not add 'nil' in .dir-locals.el
M-x add-dir-local-variable RET emacs-lisp-mode RET indent-tabs-mode RET nil RET
[ci skip]
Diffstat (limited to '.dir-locals.el')
-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 ca104fb0..de699515 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -32,5 +32,5 @@ (c-special-indent-hook . c-gnu-impose-minimum) (c-block-comment-prefix . "")))) (emacs-lisp-mode - (indent-tabs-mode))) + (indent-tabs-mode . nil))) |