From c95369e86c9a4b159320471676c705a11a123b79 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 21 Jul 2015 15:22:39 +1000 Subject: [PATCH] emacs dir-locals.el: Only disable tabs in c-mode (Makefiles need tabs) --- .dir-locals.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.dir-locals.el b/.dir-locals.el index 193a918..d14fc88 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,8 +1,8 @@ ( (nil - (indent-tabs-mode . nil) ) (c-mode + (indent-tabs-mode . nil) (c-file-style . "bsd") (c-basic-offset . 4) )