Function: semantic-lex-type-set

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

Signature

(semantic-lex-type-set TYPE VALUE)

Documentation

Set value of symbol with TYPE name to VALUE and return VALUE.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
(defsubst semantic-lex-type-set (type value)
  "Set value of symbol with TYPE name to VALUE and return VALUE."
  (set (intern type semantic-lex-types-obarray) value))