emacs dir-locals.el: Only disable tabs in c-mode (Makefiles need tabs)

This commit is contained in:
Angus Gratton 2015-07-21 15:22:39 +10:00
parent e0e7814856
commit c95369e86c

View file

@ -1,8 +1,8 @@
(
(nil
(indent-tabs-mode . nil)
)
(c-mode
(indent-tabs-mode . nil)
(c-file-style . "bsd")
(c-basic-offset . 4)
)