Function: vera-add-syntax
vera-add-syntax is a macro defined in vera-mode.el.gz.
Signature
(vera-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/vera-mode.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; syntax analysis
(defmacro vera-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 syntax (cons (cons ,symbol ,(or relpos 0)) syntax)))