Function: help-mode-revert-buffer

help-mode-revert-buffer is a byte-compiled function defined in help-mode.el.gz.

Signature

(help-mode-revert-buffer IGNORE-AUTO NOCONFIRM)

Source Code

;; Defined in /usr/src/emacs/lisp/help-mode.el.gz
(defun help-mode-revert-buffer (_ignore-auto _noconfirm)
  (let ((pos (point))
	(item help-xref-stack-item)
	;; Pretend there is no current item to add to the history.
	(help-xref-stack-item nil)
	;; Use the current buffer.
	(help-xref-following t))
    (apply (car item) (cdr item))
    (goto-char pos)))