diff options
author | Arun Isaac | 2022-03-10 12:48:43 +0530 |
---|---|---|
committer | Arun Isaac | 2022-03-10 12:48:43 +0530 |
commit | 765183b3547fb481faa415ea0efa9ece0fd5c4b8 (patch) | |
tree | 39d6a9e9807d50d52481490ee5bdddfcc2638b13 | |
parent | e44e41393f7c48b4605f769de4694578339ec188 (diff) | |
download | gn-transform-databases-765183b3547fb481faa415ea0efa9ece0fd5c4b8.tar.gz |
Allow tabs in Makefiles.
* .dir-locals.el (makefile-gmake-mode): Set indent-tabs-mode to t.
-rw-r--r-- | .dir-locals.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 6e83303..155dbdd 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -3,6 +3,8 @@ ((nil (indent-tabs-mode)) + (makefile-gmake-mode + (indent-tabs-mode t)) (scheme-mode (eval put 'map-alist 'scheme-indent-function 1) (eval put 'set-table-columns 'scheme-indent-function 1) |