Function: savehist-autosave
savehist-autosave is a byte-compiled function defined in
savehist.el.gz.
Signature
(savehist-autosave)
Documentation
Save the minibuffer history if it has been modified since the last save.
Does nothing if Savehist mode is off.
Source Code
;; Defined in /usr/src/emacs/lisp/savehist.el.gz
(defun savehist-autosave ()
"Save the minibuffer history if it has been modified since the last save.
Does nothing if Savehist mode is off."
(when savehist-mode
(savehist-save t)))