mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 05:50:11 +01:00
dir-locals.el: Don't set variables for non-programming modes
This limits the style changes to modes inherited from prog-mode. The
main reason to do this is to avoid setting fill-column for people
using Emacs to edit commit messages because 78 characters is too many
to make it wrap properly in git log. Note that makefile-mode also
inherits from prog-mode so the fill column should continue to apply
there.
v2: Apply to all the .dir-locals.el files, not just the one in the
root directory.
Acked-by: Michel Dänzer <michel.daenzer@amd.com>
This commit is contained in:
parent
68155e5a36
commit
af8fd694d4
9 changed files with 9 additions and 9 deletions
|
|
@ -1,4 +1,4 @@
|
|||
((nil
|
||||
((prog-mode
|
||||
(indent-tabs-mode . nil)
|
||||
(tab-width . 8)
|
||||
(c-basic-offset . 3)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
((nil
|
||||
((prog-mode
|
||||
(indent-tabs-mode . true)
|
||||
(tab-width . 4)
|
||||
(c-basic-offset . 4)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
((nil
|
||||
((prog-mode
|
||||
(indent-tabs-mode . true)
|
||||
(tab-width . 8)
|
||||
(c-basic-offset . 8)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
((nil
|
||||
((prog-mode
|
||||
(indent-tabs-mode . true)
|
||||
(tab-width . 8)
|
||||
(c-basic-offset . 8)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
((nil
|
||||
((prog-mode
|
||||
(indent-tabs-mode . true)
|
||||
(tab-width . 8)
|
||||
(c-basic-offset . 8)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
((nil
|
||||
((prog-mode
|
||||
(indent-tabs-mode . nil)
|
||||
(tab-width . 8)
|
||||
(c-basic-offset . 8)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
((nil
|
||||
((prog-mode
|
||||
(indent-tabs-mode . t)
|
||||
(tab-width . 8)
|
||||
(c-basic-offset . 8)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
((nil
|
||||
((prog-mode
|
||||
(indent-tabs-mode . nil)
|
||||
(tab-width . 8)
|
||||
(c-basic-offset . 4)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
((nil
|
||||
((prog-mode
|
||||
(indent-tabs-mode . true)
|
||||
(tab-width . 8)
|
||||
(c-basic-offset . 8)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue