summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-06 16:33:43 +0000
committerDavid Robillard <d@drobilla.net>2011-04-06 16:33:43 +0000
commitd591a64bac6017b504f439752d10f224ff6a5ce6 (patch)
tree4f0686d06860d744f6a16dcbfc03004c7aa62ba8 /.dir-locals.el
parent0906b39918ba0551044bd1f8c50e9de4d5aa1694 (diff)
Only use .dir-locals.el to set tab indentation (or not, for python).
git-svn-id: svn://localhost/ardour2/branches/3.0@9303 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el14
1 files changed, 2 insertions, 12 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 4da46469b5..8c6047cf50 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,14 +1,4 @@
((nil . ((fill-column . 79)))
- (c-mode . ((indent-tabs-mode . t)
- (c-file-style . "linux")
- (c-label-minimum-indentation . 0)
- (c-hanging-braces-alist . '((namespace-open after)
- (substatement-open after)
- (brace-list-open after)))))
- (c++-mode . ((indent-tabs-mode . t)
- (c-file-style . "linux")
- (c-label-minimum-indentation . 0)
- (c-hanging-braces-alist . '((namespace-open after)
- (substatement-open after)
- (brace-list-open after)))))
+ (c-mode . ((indent-tabs-mode . t)))
+ (c++-mode . ((indent-tabs-mode . t)))
(python-mode . ((indent-tabs-mode . nil))))