Function: apropos--revert-buffer
apropos--revert-buffer is a byte-compiled function defined in
apropos.el.gz.
Signature
(apropos--revert-buffer IGNORE-AUTO NOCONFIRM)
Documentation
Regenerate current Apropos buffer using apropos--current.
Intended as a value for revert-buffer-function.
Source Code
;; Defined in /usr/src/emacs/lisp/apropos.el.gz
(defun apropos--revert-buffer (_ignore-auto noconfirm)
"Regenerate current Apropos buffer using `apropos--current'.
Intended as a value for `revert-buffer-function'."
(when (or noconfirm (yes-or-no-p "Revert apropos buffer? "))
(apply #'funcall apropos--current)))