Function: shorthands-intern

shorthands-intern is a byte-compiled function defined in shorthands.el.gz.

Signature

(shorthands-intern STRING &optional OB)

Documentation

intern STRING into the obarray OB, obeying read-symbol-shorthands.

View in manual

Probably introduced at or before Emacs version 32.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/shorthands.el.gz
(defun shorthands-intern (string &optional ob)
  "`intern' STRING into the obarray OB, obeying `read-symbol-shorthands'."
  (intern (shorthands-to-longhand string) ob))