Function: semantic-lex-type-p

semantic-lex-type-p is a byte-compiled function defined in lex.el.gz.

Signature

(semantic-lex-type-p TYPE)

Documentation

Return non-nil if a symbol with TYPE name exists.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
(defsubst semantic-lex-type-p (type)
  "Return non-nil if a symbol with TYPE name exists."
  (and (setq type (semantic-lex-type-symbol type))
       (symbol-value type)))