Function: var:append-all
var:append-all is a byte-compiled function defined in hvar.el.
Signature
(var:append-all)
Documentation
Add back all hook values previously added by var:append in this Emacs session.
The ones that were removed by var:remove-all at some point.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hvar.el
(defun var:append-all ()
"Add back all hook values previously added by var:append in this Emacs session.
The ones that were removed by `var:remove-all' at some point."
(mapc (lambda (elt) (var:append (car elt) (cdr elt)))
var::append-list)
var::append-list)