summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2019-08-04 16:43:25 +0200
committerMichael Albinus <michael.albinus@gmx.de>2019-08-04 16:43:25 +0200
commit1b20993baaeffa5aa69b282862b5066960604aab (patch)
tree3630fb7225ba3a3a99a0cc6ff67ca2c957ecf14f /.dir-locals.el
parent21ada03d30dd90775523ef12caf76440d91831ba (diff)
downloademacs-1b20993baaeffa5aa69b282862b5066960604aab.tar.gz
* .dir-locals.el: Enable `bug-reference-mode' for further major modes.
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el15
1 files changed, 10 insertions, 5 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index ffd65c88027..35dc154375a 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -5,18 +5,23 @@
(c-mode . ((c-file-style . "GNU")
(c-noise-macro-names . ("INLINE" "ATTRIBUTE_NO_SANITIZE_UNDEFINED" "UNINIT" "CALLBACK" "ALIGN_STACK"))
(electric-quote-comment . nil)
- (electric-quote-string . nil)))
+ (electric-quote-string . nil)
+ (mode . bug-reference-prog)))
(objc-mode . ((c-file-style . "GNU")
(electric-quote-comment . nil)
- (electric-quote-string . nil)))
+ (electric-quote-string . nil)
+ (mode . bug-reference-prog)))
(log-edit-mode . ((log-edit-font-lock-gnu-style . t)
(log-edit-setup-add-author . t)))
(change-log-mode . ((add-log-time-zone-rule . t)
(fill-column . 74)
- (eval . (bug-reference-mode))))
+ (mode . bug-reference)))
(diff-mode . ((mode . whitespace)))
(emacs-lisp-mode . ((indent-tabs-mode . nil)
(electric-quote-comment . nil)
- (electric-quote-string . nil)))
+ (electric-quote-string . nil)
+ (mode . bug-reference-prog)))
(texinfo-mode . ((electric-quote-comment . nil)
- (electric-quote-string . nil))))
+ (electric-quote-string . nil)
+ (mode . bug-reference-prog)))
+ (outline-mode . ((mode . bug-reference))))