mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
Tweak LLVM emacs style to make default namespace indentation closer to style
guide. llvm-svn: 77331
This commit is contained in:
parent
e94d490b89
commit
b904dfa17d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user