1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

No tabs in C code.

* .dir-locals.el (c-mode): Set 'indent-tabs-mode' to nil in C.
This commit is contained in:
Ludovic Courtès 2018-01-11 15:25:17 +01:00 committed by Andy Wingo
parent 921364df27
commit de7943a42b

View file

@ -2,7 +2,8 @@
((nil . ((fill-column . 72)
(tab-width . 8)))
(c-mode . ((c-file-style . "gnu")))
(c-mode . ((c-file-style . "gnu")
(indent-tabs-mode . nil)))
(scheme-mode
. ((indent-tabs-mode . nil)
(eval . (put 'pass-if 'scheme-indent-function 1))