summaryrefslogtreecommitdiff
path: root/utils/emacs
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-28 17:34:57 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-28 17:34:57 +0000
commita02446a9d5cea82553717d20230a46c808893bfc (patch)
treed3831a94b340f15da4db09cc2b4261a095df73c8 /utils/emacs
parent3583df7676bd194faf21eb24ff7790928502852a (diff)
downloadllvm-a02446a9d5cea82553717d20230a46c808893bfc.tar.gz
llvm-a02446a9d5cea82553717d20230a46c808893bfc.tar.bz2
llvm-a02446a9d5cea82553717d20230a46c808893bfc.tar.xz
Tweak LLVM emacs style to make default namespace indentation closer to style
guide. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/emacs')
-rw-r--r--utils/emacs/emacs.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/utils/emacs/emacs.el b/utils/emacs/emacs.el
index a12848b457..969f538c81 100644
--- a/utils/emacs/emacs.el
+++ b/utils/emacs/emacs.el
@@ -1,6 +1,6 @@
;; LLVM coding style guidelines in emacs
;; Maintainer: LLVM Team, http://llvm.org/
-;; Modified: 2005-04-24
+;; Modified: 2009-07-28
;; Max 80 cols per line, indent by two spaces, no tabs.
;; Apparently, this does not affect tabs in Makefiles.
@@ -17,7 +17,9 @@
'((fill-column . 80)
(c++-indent-level . 2)
(c-basic-offset . 2)
- (indent-tabs-mode . nil)))
+ (indent-tabs-mode . nil)
+ (c-offsets-alist . ((innamespace 0)))))
+
(add-hook 'c-mode-hook
(function
(lambda nil
@@ -26,6 +28,7 @@
(c-set-style "llvm.org")
)
))))
+
(add-hook 'c++-mode-hook
(function
(lambda nil