summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Zalamena <rzalamena@opensourcerouting.org>2019-11-04 10:56:42 -0300
committerRafael Zalamena <rzalamena@opensourcerouting.org>2019-11-04 11:45:52 -0300
commit3a0f661844eddb49e1ce273319e12c8570fcfae2 (patch)
tree0197c9b4131c63612b9ea6831c16ddca387ad837
parent2bbb98d60f3ea6e01926eb9ddaa075065d7f1a50 (diff)
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>
-rw-r--r--.dir-locals.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 21392ecf28..e47f245db7 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -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)
+ )))