mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
5fedc2d492
llvm-svn: 26750
13 lines
338 B
EmacsLisp
13 lines
338 B
EmacsLisp
;; LLVM coding style guidelines in emacs
|
|
;; Maintainer: LLVM Team, http://llvm.org/
|
|
;; Modified: 2005-04-24
|
|
|
|
;; Max 80 cols per line, indent by two spaces, no tabs.
|
|
;; Apparently, this does not affect tabs in Makefiles.
|
|
(custom-set-variables
|
|
'(fill-column 80)
|
|
'(c++-indent-level 2)
|
|
'(c-basic-offset 2)
|
|
'(indent-tabs-mode nil))
|
|
|