Function: var:remove-all

var:remove-all is a byte-compiled function defined in hvar.el.

Signature

(var:remove-all)

Documentation

Remove all hook values added by var:append from their hook variables.

Affects only those hook values added by var:append in this Emacs session. Keep a copy of these values for future re-use; see var:append-all.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hvar.el
(defun var:remove-all ()
  "Remove all hook values added by `var:append' from their hook variables.
Affects only those hook values added by `var:append' in this Emacs session.
Keep a copy of these values for future re-use; see `var:append-all'."
  (mapc (lambda (elt) (var:remove (car elt) (cdr elt)))
	var::append-list)
  var::append-list)