Function: help-goto-next-page

help-goto-next-page is an interactive and byte-compiled function defined in help-mode.el.gz.

Signature

(help-goto-next-page)

Documentation

Go to the next page (if any) in the current buffer.

The help buffers are divided into "pages" by the ^L character.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/help-mode.el.gz
(defun help-goto-next-page ()
  "Go to the next page (if any) in the current buffer.
The help buffers are divided into \"pages\" by the ^L character."
  (interactive nil help-mode)
  (push-mark)
  (forward-page)
  (unless (eobp)
    (forward-line 1)))