Function: shorthands-unintern
shorthands-unintern is a byte-compiled function defined in
shorthands.el.gz.
Signature
(shorthands-unintern STRING OB)
Documentation
uninterns the symbol of shorthand name STRING in obarray OB.
Obeys read-symbol-shorthands.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/shorthands.el.gz
(defun shorthands-unintern (string ob)
"`unintern's the symbol of shorthand name STRING in obarray OB.
Obeys `read-symbol-shorthands'."
(unless (obarrayp ob)
(signal 'wrong-type-argument (list #'obarrayp ob)))
(unintern (shorthands-to-longhand string) ob))