Function: semantic-lex-spp-value-valid-p
semantic-lex-spp-value-valid-p is a byte-compiled function defined in
lex-spp.el.gz.
Signature
(semantic-lex-spp-value-valid-p VALUE)
Documentation
Return non-nil if VALUE is valid.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex-spp.el.gz
(defun semantic-lex-spp-value-valid-p (value)
"Return non-nil if VALUE is valid."
(or (null value)
(stringp value)
(and (consp value)
(or (semantic-lex-token-p (car value))
(eq (car (car value)) 'spp-arg-list)))))