You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defconster-standard-sharpsign-dispatcher-alist
(concat (er-enumerate-sharpsign-digit-dispatchers)
(er-enumerate-original-sharpsign-dispatchers)
'((?\'. (lambda (inx) (list'function (er-read-datum in)))))))
(defcustomer-sharpsign-dispatcher-alist er-standard-sharpsign-dispatcher-alist
"An alist mapping characters following ?# to reader functions.")
;; This regexp reader can now be conditionally enabled
(add-to-list er-sharpsign-dispatcher-alist
'(?\/. (lambda (inx) (er-read-regexp in))))
Or, to prevent users from breaking the elisp reader completely, the alist could start empty and only be used before er-croak in the catchall of your existing dispatcher.
The text was updated successfully, but these errors were encountered:
E.g., something like
Or, to prevent users from breaking the elisp reader completely, the alist could start empty and only be used before
er-croak
in the catchall of your existing dispatcher.The text was updated successfully, but these errors were encountered: