blob: 3f68ea84e18c4dd3e9f06307292c8f16c64de90c [file] [log] [blame]
Misha Brukman55d2a1a2005-04-24 17:09:19 +00001;; LLVM coding style guidelines in emacs
2;; Maintainer: LLVM Team, http://llvm.cs.uiuc.edu
3;; Modified: 2005-04-24
4
5;; Max 80 cols per line, indent by two spaces, no tabs.
6;; Apparently, this does not affect tabs in Makefiles.
7(custom-set-variables
8 '(fill-column 80)
9 '(c++-indent-level 2)
10 '(c-basic-offset 2)
11 '(indent-tabs-mode nil))
12