Function: savehist-uninstall
savehist-uninstall is a byte-compiled function defined in
savehist.el.gz.
Signature
(savehist-uninstall)
Documentation
Undo installing savehist.
Normally invoked by calling savehist-mode(var)/savehist-mode(fun) to unset the minor mode.
Source Code
;; Defined in /usr/src/emacs/lisp/savehist.el.gz
(defun savehist-uninstall ()
"Undo installing savehist.
Normally invoked by calling `savehist-mode' to unset the minor mode."
(remove-hook 'minibuffer-setup-hook #'savehist-minibuffer-hook)
(remove-hook 'kill-emacs-hook #'savehist-autosave)
(savehist--manage-timer))