Function: obarray-remove

obarray-remove is a byte-compiled function defined in obarray.el.gz.

Signature

(obarray-remove OB NAME)

Documentation

Remove symbol named NAME if it is contained in obarray OB.

Return t on success, nil otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/obarray.el.gz
(defun obarray-remove (ob name)
  "Remove symbol named NAME if it is contained in obarray OB.
Return t on success, nil otherwise."
  (unintern name ob))