Fix setting indent-tabs-mode in the Emacs .dir-locals.el files
authorNeil Roberts <nroberts@igalia.com>
Wed, 17 Oct 2018 15:27:07 +0000 (17:27 +0200)
committerNeil Roberts <nroberts@igalia.com>
Wed, 17 Oct 2018 17:03:08 +0000 (19:03 +0200)
Some of the .dir-locals.el had the wrong name for the truthy value so
it wasn’t setting indent-tabs-mode.

Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
src/gallium/drivers/r600/.dir-locals.el
src/gallium/drivers/radeon/.dir-locals.el
src/gallium/drivers/radeonsi/.dir-locals.el
src/mesa/drivers/dri/nouveau/.dir-locals.el

index 4e35c12..15cd68e 100644 (file)
@@ -1,5 +1,5 @@
 ((prog-mode
-  (indent-tabs-mode . true)
+  (indent-tabs-mode . t)
   (tab-width . 8)
   (c-basic-offset . 8)
   (c-file-style . "stroustrup")
index 4e35c12..15cd68e 100644 (file)
@@ -1,5 +1,5 @@
 ((prog-mode
-  (indent-tabs-mode . true)
+  (indent-tabs-mode . t)
   (tab-width . 8)
   (c-basic-offset . 8)
   (c-file-style . "stroustrup")
index 4e35c12..15cd68e 100644 (file)
@@ -1,5 +1,5 @@
 ((prog-mode
-  (indent-tabs-mode . true)
+  (indent-tabs-mode . t)
   (tab-width . 8)
   (c-basic-offset . 8)
   (c-file-style . "stroustrup")
index 774f023..9b3ddf5 100644 (file)
@@ -1,5 +1,5 @@
 ((prog-mode
-  (indent-tabs-mode . true)
+  (indent-tabs-mode . t)
   (tab-width . 8)
   (c-basic-offset . 8)
   (c-file-style . "stroustrup")