Function: vhdl-has-syntax
vhdl-has-syntax is a macro defined in vhdl-mode.el.gz.
Signature
(vhdl-has-syntax SYMBOL)
Documentation
A simple macro to return check the syntax list.
Try to increase performance by using this macro.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defmacro vhdl-has-syntax (symbol)
"A simple macro to return check the syntax list.
Try to increase performance by using this macro."
`(assoc ,symbol vhdl-syntactic-context))