Function: semantic-lex-spp-symbol-remove

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

Signature

(semantic-lex-spp-symbol-remove NAME &optional MAP)

Documentation

Remove the spp symbol with NAME.

If optional obarray MAP is non-nil, then use that obarray instead of the dynamic map.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex-spp.el.gz
(defsubst semantic-lex-spp-symbol-remove (name &optional map)
  "Remove the spp symbol with NAME.
If optional obarray MAP is non-nil, then use that obarray instead of
the dynamic map."
  (unintern name (or map (semantic-lex-spp-dynamic-map))))