Function: semantic-lex-keyword-p

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

Signature

(semantic-lex-keyword-p NAME)

Documentation

Return non-nil if a keyword with NAME exists in the keyword table.

Return nil otherwise.

Source Code

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