diff options
author | Eli Zaretskii <eliz@gnu.org> | 2017-10-14 11:19:56 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2017-10-14 11:19:56 +0300 |
commit | eda9f5018cdf8e23f47f5f7421539ce56ed7148b (patch) | |
tree | be31b470cfef7eeded7b037b325611c6f8c623c3 /.dir-locals.el | |
parent | 05aadd89900873f0d94a151c3fb0002f267151f5 (diff) | |
download | emacs-eda9f5018cdf8e23f47f5f7421539ce56ed7148b.tar.gz |
Another fix for C mode fontification of w32 source files
* .dir-locals.el (c-mode) <c-noise-macro-names>: Add
"CALLBACK", to correctly fontify functions with this attribute.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index eb80d969fb4..68eb58fa18b 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -2,7 +2,7 @@ (sentence-end-double-space . t) (fill-column . 70))) (c-mode . ((c-file-style . "GNU") - (c-noise-macro-names . ("UNINIT" "ALIGN_STACK")))) + (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))) |