Function: shorthands-intern-soft

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

Signature

(shorthands-intern-soft STRING &optional OB)

Documentation

Return the interned symbol of name STRING in the obarray OB, if any.

If not found, return nil. Contrary to intern-soft, this obeys 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-soft (string &optional ob)
  "Return the interned symbol of name STRING in the obarray OB, if any.
If not found, return nil.
Contrary to `intern-soft', this obeys `read-symbol-shorthands'."
  (intern-soft (shorthands-to-longhand string) ob))