Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Unified Diff: .dir-locals.el

Issue 6579041: Fix tab stops to be 8-spaces instead of 4. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cbootimage.git@master
Patch Set: Fix tab stops. Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | bct_dump.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: .dir-locals.el
diff --git a/.dir-locals.el b/.dir-locals.el
index ad047f745cf6fed4fe3e6d8408dee3cc792c802d..31a7ea718a8186afa0669f108a5c2835c6fb7eb3 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))))
« no previous file with comments | « no previous file | bct_dump.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698