diff options
| author | Eli Zaretskii <eliz@gnu.org> | 2017-10-14 11:17:34 +0300 |
|---|---|---|
| committer | Eli Zaretskii <eliz@gnu.org> | 2017-10-14 11:17:34 +0300 |
| commit | 05aadd89900873f0d94a151c3fb0002f267151f5 (patch) | |
| tree | e27c89977b38d2c19fdc2ee97388b5b5448d0fe8 /.dir-locals.el | |
| parent | aa0c38f3586d462c7b4d489542b32580f489fdc5 (diff) | |
Fix fontification of ALIGN_STACK functions
* .dir-locals.el (c-mode) <c-noise-macro-names>: Add
"ALIGN_STACK", 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 a3705f4d93c..eb80d969fb4 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")))) + (c-noise-macro-names . ("UNINIT" "ALIGN_STACK")))) (objc-mode . ((c-file-style . "GNU"))) (log-edit-mode . ((log-edit-font-lock-gnu-style . t) (log-edit-setup-add-author . t))) |
