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

Side by Side 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, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | bct_dump.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ;;; This file is used by Emacs to configure it's code editing modes to correctly 1 ;;; This file is used by Emacs to configure it's code editing modes to correctly
2 ;;; indent cbootimage style source code. 2 ;;; indent cbootimage style source code.
3 3
4 ((nil . ((indent-tabs-mode . t) 4 ((nil . ((indent-tabs-mode . t)
5 (tab-width . 4) 5 (tab-width . 8)
6 (fill-column . 80))) 6 (fill-column . 80)))
7 (c-mode . ((c-tab-always-indent . nil) 7
8 (c-basic-offset . 4))) 8 (c-mode . ((c-basic-offset . 8)))
9 (c++-mode . ((c-tab-always-indent . nil) 9
10 (c-basic-offset . 4)))) 10 (c++-mode . ((c-basic-offset . 8))))
OLDNEW
« 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