Title: [101013] trunk
Revision
101013
Author
commit-qu...@webkit.org
Date
2011-11-22 10:35:41 -0800 (Tue, 22 Nov 2011)

Log Message

Fix .dir-locals.el to only apply to specific modes
https://bugs.webkit.org/show_bug.cgi?id=72963

Patch by Andy Wingo <wi...@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.

Modified Paths

Diff

Modified: trunk/.dir-locals.el (101012 => 101013)


--- trunk/.dir-locals.el	2011-11-22 18:33:03 UTC (rev 101012)
+++ trunk/.dir-locals.el	2011-11-22 18:35:41 UTC (rev 101013)
@@ -2,12 +2,9 @@
 
 ;; Syntax: ((MODE (VAR . VAL) ...) ...)
 ;; MODE is a symbol like `c-mode', or `nil' for all modes.
-((nil
+((c-mode
   (indent-tabs-mode . nil)
   (c-basic-offset . 4))
- (c-mode
-  (indent-tabs-mode . nil)
-  (c-basic-offset . 4))
  (c++-mode
   (indent-tabs-mode . nil)
   (c-basic-offset . 4))

Modified: trunk/ChangeLog (101012 => 101013)


--- trunk/ChangeLog	2011-11-22 18:33:03 UTC (rev 101012)
+++ trunk/ChangeLog	2011-11-22 18:35:41 UTC (rev 101013)
@@ -1,3 +1,13 @@
+2011-11-22  Andy Wingo  <wi...@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  <ad...@chromium.org>
 
         Add GYP-generated WTF.xcodeproj to .gitignore after r100851.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to