summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorAnton Staaf <robotboy@chromium.org>2011-03-02 09:22:25 -0800
committerAnton Staaf <robotboy@chromium.org>2011-03-02 09:22:25 -0800
commit2b6c88c2d98865ff7122a07c3ff7a9b65daf1f81 (patch)
treed951656f7c3a7feb2215ca53652e51ef88de908c /.dir-locals.el
parentc6244270f450f4e4502c452833a633454da6d3ce (diff)
downloadcbootimage-2b6c88c2d98865ff7122a07c3ff7a9b65daf1f81.tar.gz
Fix tab stops to be 8-spaces instead of 4.
Change-Id: If70ee0c550a37ad7401552c231021b966b8e368f BUG=None TEST=None Review URL: http://codereview.chromium.org/6579041
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index ad047f7..31a7ea7 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,10 +1,10 @@
;;; This file is used by Emacs to configure it's code editing modes to correctly
;;; indent cbootimage style source code.
-((nil . ((indent-tabs-mode . t)
- (tab-width . 4)
- (fill-column . 80)))
- (c-mode . ((c-tab-always-indent . nil)
- (c-basic-offset . 4)))
- (c++-mode . ((c-tab-always-indent . nil)
- (c-basic-offset . 4))))
+((nil . ((indent-tabs-mode . t)
+ (tab-width . 8)
+ (fill-column . 80)))
+
+ (c-mode . ((c-basic-offset . 8)))
+
+ (c++-mode . ((c-basic-offset . 8))))