Function: semantic--grammar-macros-matcher
semantic--grammar-macros-matcher is a byte-compiled function defined
in grammar.el.gz.
Signature
(semantic--grammar-macros-matcher END)
Documentation
Search for a grammar macro name to highlight.
END is the limit of the search.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/grammar.el.gz
(defun semantic--grammar-macros-matcher (end)
"Search for a grammar macro name to highlight.
END is the limit of the search."
(let ((regexp (semantic--grammar-macros-regexp-1)))
(or (and regexp (re-search-forward regexp end t))
(and (setq regexp (semantic--grammar-macros-regexp-2))
(re-search-forward regexp end t)))))