Fix setting indent-tabs-mode in the Emacs .dir-locals.el files

Some of the .dir-locals.el had the wrong name for the truthy value so
it wasn’t setting indent-tabs-mode.

Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
Neil Roberts 2018-10-17 17:27:07 +02:00
parent d27b1c83b9
commit a9475d9337
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
((prog-mode
(indent-tabs-mode . true)
(indent-tabs-mode . t)
(tab-width . 8)
(c-basic-offset . 8)
(c-file-style . "stroustrup")

View File

@ -1,5 +1,5 @@
((prog-mode
(indent-tabs-mode . true)
(indent-tabs-mode . t)
(tab-width . 8)
(c-basic-offset . 8)
(c-file-style . "stroustrup")

View File

@ -1,5 +1,5 @@
((prog-mode
(indent-tabs-mode . true)
(indent-tabs-mode . t)
(tab-width . 8)
(c-basic-offset . 8)
(c-file-style . "stroustrup")

View File

@ -1,5 +1,5 @@
((prog-mode
(indent-tabs-mode . true)
(indent-tabs-mode . t)
(tab-width . 8)
(c-basic-offset . 8)
(c-file-style . "stroustrup")