Function: vhdl-add-syntax
vhdl-add-syntax is a macro defined in vhdl-mode.el.gz.
Signature
(vhdl-add-syntax SYMBOL &optional RELPOS)
Documentation
A simple macro to append the syntax in SYMBOL to 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-add-syntax (symbol &optional relpos)
"A simple macro to append the syntax in SYMBOL to the syntax list.
Try to increase performance by using this macro."
`(setq vhdl-syntactic-context
(cons (cons ,symbol ,relpos) vhdl-syntactic-context)))