Fix fontification of ATTRIBUTE_NO_SANITIZE_ADDRESS functions

* .dir-locals.el (c-mode) <c-noise-macro-names>:
Add "ATTRIBUTE_NO_SANITIZE_ADDRESS", to fontify functions with this
attribute correctly.
This commit is contained in:
Stefan Kangas 2025-02-10 00:03:12 +01:00
parent 893f6652da
commit 1c16d81bac

View file

@ -18,6 +18,7 @@
(vc-default-patch-addressee . "bug-gnu-emacs@gnu.org")))
(c-mode . ((c-file-style . "GNU")
(c-noise-macro-names . ("INLINE" "NO_INLINE" "ATTRIBUTE_NO_SANITIZE_UNDEFINED"
"ATTRIBUTE_NO_SANITIZE_ADDRESS"
"UNINIT" "CALLBACK" "ALIGN_STACK" "ATTRIBUTE_MALLOC"
"ATTRIBUTE_DEALLOC_FREE" "ANDROID_EXPORT" "TEST_STATIC"
"INLINE_HEADER_BEGIN" "INLINE_HEADER_END"))