Tweak LLVM emacs style to make default namespace indentation closer to style
authorDaniel Dunbar <daniel@zuster.org>
Tue, 28 Jul 2009 17:34:57 +0000 (17:34 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 28 Jul 2009 17:34:57 +0000 (17:34 +0000)
guide.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77331 91177308-0d34-0410-b5e6-96231b3b80d8

utils/emacs/emacs.el

index a12848b4575482c4e01cc8ff6ffdceb8a4a8cef9..969f538c81743413f32aabf4ce9e9463f925544e 100644 (file)
@@ -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