Function: elisp--read-symbol-shorthands
elisp--read-symbol-shorthands is a byte-compiled function defined in
elisp-mode.el.gz.
Signature
(elisp--read-symbol-shorthands S)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
(defun elisp--read-symbol-shorthands (s)
(let ((shs (shorthands-of-symbol s)))
(when shs
(mapcar (lambda (sh)
(let ((sym (make-symbol sh)))
(put sym 'elisp--longhand s)
sym))
shs))))