Function: semantic-lex-spp-validate-value
semantic-lex-spp-validate-value is a macro defined in lex-spp.el.gz.
Signature
(semantic-lex-spp-validate-value NAME VALUE)
Documentation
Validate the NAME and VALUE of a macro before it is set.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex-spp.el.gz
(defmacro semantic-lex-spp-validate-value (_name _value)
"Validate the NAME and VALUE of a macro before it is set."
; `(progn
; (when (not (semantic-lex-spp-value-valid-p ,value))
; (error "Symbol \"%s\" with bogus value %S" ,name ,value))
; (when (and semantic-lex-spp-debug-symbol
; (string= semantic-lex-spp-debug-symbol name))
; (debug))
; )
nil
)