summaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorRafael Zalamena <rzalamena@opensourcerouting.org>2019-11-04 14:56:42 +0100
committerRafael Zalamena <rzalamena@opensourcerouting.org>2019-11-04 15:45:52 +0100
commit3a0f661844eddb49e1ce273319e12c8570fcfae2 (patch)
tree0197c9b4131c63612b9ea6831c16ddca387ad837 /.dir-locals.el
parentMerge pull request #5272 from vincentbernat/fix/debian-copyright (diff)
downloadfrr-3a0f661844eddb49e1ce273319e12c8570fcfae2.tar.xz
frr-3a0f661844eddb49e1ce273319e12c8570fcfae2.zip
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>
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 21392ecf2..e47f245db 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)
+ )))