Clean up '.dir-locals.el'.

* .dir-locals.el: Change indentation, and make sure that tabs are used
when editing Makefiles.
This commit is contained in:
Timothy Sample 2019-05-17 13:25:56 -04:00
parent 7c1c3ad5c8
commit 28093b843e
1 changed files with 27 additions and 30 deletions

View File

@ -1,15 +1,10 @@
((nil ((makefile-mode
. . ((indent-tabs-mode . t)))
((indent-tabs-mode . nil)))
(makefile-mode
(indent-tabs-mode . t))
(scheme-mode (scheme-mode
. . ((geiser-active-implementations . (guile))
((geiser-active-implementations . (guile)) (eval . (progn
(eval (let ((top (locate-dominating-file default-directory
. ".dir-locals.el")))
(progn
(let ((top (locate-dominating-file default-directory ".dir-locals.el")))
(add-to-list 'geiser-guile-load-path top)))) (add-to-list 'geiser-guile-load-path top))))
(eval . (put '<sh-case> 'scheme-indent-function 1)) (eval . (put '<sh-case> 'scheme-indent-function 1))
(eval . (put '<sh-defun> 'scheme-indent-function 1)) (eval . (put '<sh-defun> 'scheme-indent-function 1))
@ -28,4 +23,6 @@
(eval . (put 'call-with-continue 'scheme-indent-function 0)) (eval . (put 'call-with-continue 'scheme-indent-function 0))
(eval . (put 'with-arguments 'scheme-indent-function 1)) (eval . (put 'with-arguments 'scheme-indent-function 1))
(eval . (put 'with-environ 'scheme-indent-function 1)) (eval . (put 'with-environ 'scheme-indent-function 1))
(eval . (put 'with-variables 'scheme-indent-function 1))))) (eval . (put 'with-variables 'scheme-indent-function 1))))
(nil
. ((indent-tabs-mode . nil))))