elisp code to help with LLVM code standards compliance

llvm-svn: 21497
This commit is contained in:
Misha Brukman 2005-04-24 17:09:19 +00:00
parent 831ad84eea
commit 3e9634eaa0
1 changed files with 12 additions and 0 deletions

12
llvm/utils/emacs/emacs.el Normal file
View File

@ -0,0 +1,12 @@
;; LLVM coding style guidelines in emacs
;; Maintainer: LLVM Team, http://llvm.cs.uiuc.edu
;; 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))