From: Michael Albinus Date: Sun, 4 Aug 2019 14:43:25 +0000 (+0200) Subject: * .dir-locals.el: Enable `bug-reference-mode' for further major modes. X-Git-Tag: emacs-27.0.90~1709 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1b20993baaeffa5aa69b282862b5066960604aab;p=emacs.git * .dir-locals.el: Enable `bug-reference-mode' for further major modes. --- 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))))