Function: gnus-article-goto-next-page
gnus-article-goto-next-page is an interactive and byte-compiled
function defined in gnus-art.el.gz.
Signature
(gnus-article-goto-next-page)
Documentation
Show the next page of the article.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
;; Article mode commands
(defun gnus-article-goto-next-page ()
"Show the next page of the article."
(interactive nil gnus-article-mode)
(when (gnus-article-next-page)
(goto-char (point-min))
(gnus-article-read-summary-keys nil ?n)))