mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
eda9f5018c
* .dir-locals.el (c-mode) <c-noise-macro-names>: Add "CALLBACK", to correctly fontify functions with this attribute.
15 lines
611 B
EmacsLisp
15 lines
611 B
EmacsLisp
((nil . ((tab-width . 8)
|
|
(sentence-end-double-space . t)
|
|
(fill-column . 70)))
|
|
(c-mode . ((c-file-style . "GNU")
|
|
(c-noise-macro-names . ("UNINIT" "CALLBACK" "ALIGN_STACK"))))
|
|
(objc-mode . ((c-file-style . "GNU")))
|
|
(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)
|
|
(bug-reference-url-format . "https://debbugs.gnu.org/%s")
|
|
(mode . bug-reference)))
|
|
(diff-mode . ((mode . whitespace)))
|
|
(emacs-lisp-mode . ((indent-tabs-mode . nil))))
|