From: Eli Zaretskii Date: Sat, 14 Oct 2017 08:19:56 +0000 (+0300) Subject: Another fix for C mode fontification of w32 source files X-Git-Tag: emacs-26.0.91~558 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eda9f5018c;p=emacs.git Another fix for C mode fontification of w32 source files * .dir-locals.el (c-mode) : Add "CALLBACK", to correctly fontify functions with this attribute. --- 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)))