Function: dash-unload-function
dash-unload-function is a byte-compiled function defined in dash.el.
Signature
(dash-unload-function)
Documentation
Remove Dash from info-lookup-alist.
Used by unload-feature, which see.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun dash-unload-function ()
"Remove Dash from `info-lookup-alist'.
Used by `unload-feature', which see."
(let ((docs (and (featurep 'info-look)
(dash--info-elisp-docs))))
(when (member dash--info-doc-spec (car docs))
(setcar docs (remove dash--info-doc-spec (car docs)))
(info-lookup-reset)))
nil)