https://bugs.webkit.org/show_bug.cgi?id=72963
Patch by Andy Wingo <wingo@igalia.com> on 2011-11-22
Reviewed by Xan Lopez.
* .dir-locals.el: Remove `nil' block, as it was causing
makefile-mode not to insert tabs.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@101013
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
;; Syntax: ((MODE (VAR . VAL) ...) ...)
;; MODE is a symbol like `c-mode', or `nil' for all modes.
-((nil
- (indent-tabs-mode . nil)
- (c-basic-offset . 4))
- (c-mode
+((c-mode
(indent-tabs-mode . nil)
(c-basic-offset . 4))
(c++-mode
+2011-11-22 Andy Wingo <wingo@igalia.com>
+
+ Fix .dir-locals.el to only apply to specific modes
+ https://bugs.webkit.org/show_bug.cgi?id=72963
+
+ Reviewed by Xan Lopez.
+
+ * .dir-locals.el: Remove `nil' block, as it was causing
+ makefile-mode not to insert tabs.
+
2011-11-21 Adam Klein <adamk@chromium.org>
Add GYP-generated WTF.xcodeproj to .gitignore after r100851.