Function: semantic-lex-type-symbol

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

Signature

(semantic-lex-type-symbol TYPE)

Documentation

Return symbol with TYPE or nil if not found.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
(defsubst semantic-lex-type-symbol (type)
  "Return symbol with TYPE or nil if not found."
  (and (obarrayp semantic-lex-types-obarray)
       (stringp type)
       (intern-soft type semantic-lex-types-obarray)))