Skip to content

Commit 3a0f661

Browse files
committed
tools: fix emacs configuration file
It was missing a set of parentheses and a dot before `indent-tabs-mode'. More information here: https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html#Directory-Variables Signed-off-by: Rafael Zalamena <[email protected]>
1 parent 2bbb98d commit 3a0f661

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.dir-locals.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
;;; For more information see (info "(emacs) Directory Variables")
33
;;; Match project coding conventions
44

5-
((c-mode
6-
(indent-tabs-mode . t)
7-
(show-trailing-whitespace . t)
8-
(c-basic-offset . 8)))
5+
((c-mode . ((indent-tabs-mode . t)
6+
(show-trailing-whitespace . t)
7+
(c-basic-offset . 8)
8+
)))

0 commit comments

Comments
 (0)