Function: help-go-forward
help-go-forward is an interactive and byte-compiled function defined
in help-mode.el.gz.
Signature
(help-go-forward)
Documentation
Go to the next topic in this help buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/help-mode.el.gz
(defun help-go-forward ()
"Go to the next topic in this help buffer."
(interactive)
(if help-xref-forward-stack
(help-xref-go-forward (current-buffer))
(user-error "No next help buffer")))