From 55d2a1a54629b75a516b88165c8e48bdb2dea2c9 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sun, 24 Apr 2005 17:09:19 +0000 Subject: [PATCH] elisp code to help with LLVM code standards compliance git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21497 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/emacs/emacs.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 utils/emacs/emacs.el diff --git a/utils/emacs/emacs.el b/utils/emacs/emacs.el new file mode 100644 index 00000000000..3f68ea84e18 --- /dev/null +++ b/utils/emacs/emacs.el @@ -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)) + -- 2.34.1