summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJafar Al-Gharaibeh <Jafaral@users.noreply.github.com>2019-11-04 11:01:25 -0600
committerGitHub <noreply@github.com>2019-11-04 11:01:25 -0600
commitba3afa4c2c4859ae9560e08393f57d293fbf9c4c (patch)
tree5e547bf2629462d74e81b2e6c8d85c4b008cb827
parente536181ef0452380a3ac26ccccf58e68a3b485eb (diff)
parent3a0f661844eddb49e1ce273319e12c8570fcfae2 (diff)
Merge pull request #5275 from opensourcerouting/emacs-conf
tools: fix emacs configuration file
-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)
+ )))