Function: obarray-put

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

Signature

(obarray-put OB NAME)

Documentation

Return symbol named NAME from obarray OB.

Creates and adds the symbol if doesn't exist.

Source Code

;; Defined in /usr/src/emacs/lisp/obarray.el.gz
(defun obarray-put (ob name)
  "Return symbol named NAME from obarray OB.
Creates and adds the symbol if doesn't exist."
  (intern name ob))