Function: obarray-get

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

Signature

(obarray-get OB NAME)

Documentation

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

Return nil otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/obarray.el.gz
;; Don’t use obarray as a variable name to avoid shadowing.
(defun obarray-get (ob name)
  "Return symbol named NAME if it is contained in obarray OB.
Return nil otherwise."
  (intern-soft name ob))