From: Eli Zaretskii <eliz@gnu.org>
Date: Sat, 14 Oct 2017 08:17:34 +0000 (+0300)
Subject: Fix fontification of ALIGN_STACK functions
X-Git-Tag: emacs-26.0.91~559
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=05aadd8990;p=emacs.git

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.
---

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)))