diff options
author | Neil Roberts <[email protected]> | 2015-01-31 17:45:09 +0100 |
---|---|---|
committer | Neil Roberts <[email protected]> | 2015-02-02 12:02:55 +0000 |
commit | af8fd694d4946493553aac310cc1ce5fa1f765e5 (patch) | |
tree | c9c693dd785e52947430352a8f8f88d9d4a91754 /src/gallium/winsys | |
parent | 68155e5a3699271b27adbe52968a9d5f8c84b0e6 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium/winsys')
-rw-r--r-- | src/gallium/winsys/radeon/.dir-locals.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/radeon/.dir-locals.el b/src/gallium/winsys/radeon/.dir-locals.el index 0e937bba36b..d5f0f043326 100644 --- a/src/gallium/winsys/radeon/.dir-locals.el +++ b/src/gallium/winsys/radeon/.dir-locals.el @@ -1,4 +1,4 @@ -((nil +((prog-mode (indent-tabs-mode . nil) (tab-width . 8) (c-basic-offset . 4) |