]> git.eshelyaron.com Git - emacs.git/commitdiff
* .dir-locals.el: Enable `bug-reference-mode' for further major modes.
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 4 Aug 2019 14:43:25 +0000 (16:43 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 4 Aug 2019 14:43:25 +0000 (16:43 +0200)
.dir-locals.el

index ffd65c88027fdad78a2df4164da983fe4fa04192..35dc154375aa46b8917f0d178ca2dec5ad5fb778 100644 (file)
@@ -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))))