civodul pushed a commit to branch stable-2.2
in repository guile.

commit d01e0b084ecbff10dff9e6c5950366ebdae0f080
Author: Ludovic Courtès <l...@gnu.org>
Date:   Thu Jan 11 15:25:17 2018 +0100

    No tabs in C code.
    
    * .dir-locals.el (c-mode): Set 'indent-tabs-mode' to nil in C.
---
 .dir-locals.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.dir-locals.el b/.dir-locals.el
index 5e213c5..4a17633 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -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))

Reply via email to