From bd1c3187cfcdc52ae3492df7cbe6ec394d6e38c8 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Wed, 23 Dec 2020 00:00:26 -0500 Subject: [PATCH] .dir-locals.el: Set indent-tabs-mode to nil in Elisp sources Despite .dir-locals.el having a catchall value of t for indent-tabs-mode, Org's Elisp files are a mix of tabs and spaces. Emacs has used a value of nil for indent-tabs-mode since 93d4412046 (Set indent-tabs-mode to nil in (most) Elisp sources, 2015-04-15). Do the same. Ref: https://orgmode.org/list/87eejsg9vw.fsf@gnu.org --- .dir-locals.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.dir-locals.el b/.dir-locals.el index dcd979c18..9df10dfed 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -6,6 +6,8 @@ (tab-width . 8) (fill-column . 70) (sentence-end-double-space . t)) + (emacs-lisp-mode + (indent-tabs-mode)) (org-mode (indent-tabs-mode) (org-adapt-indentation)