forked from Mirror/frr
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 <rzalamena@opensourcerouting.org>
This commit is contained in:
parent
2bbb98d60f
commit
3a0f661844
|
@ -2,7 +2,7 @@
|
|||
;;; For more information see (info "(emacs) Directory Variables")
|
||||
;;; Match project coding conventions
|
||||
|
||||
((c-mode
|
||||
(indent-tabs-mode . t)
|
||||
(show-trailing-whitespace . t)
|
||||
(c-basic-offset . 8)))
|
||||
((c-mode . ((indent-tabs-mode . t)
|
||||
(show-trailing-whitespace . t)
|
||||
(c-basic-offset . 8)
|
||||
)))
|
||||
|
|
Loading…
Reference in a new issue