Function: gnus-button-next-page
gnus-button-next-page is an interactive and byte-compiled function
defined in gnus-art.el.gz.
Signature
(gnus-button-next-page &optional ARGS MORE-ARGS)
Documentation
Go to the next page.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-button-next-page (&optional _args _more-args)
"Go to the next page."
(interactive nil gnus-article-mode)
(let ((win (selected-window)))
(select-window (gnus-get-buffer-window gnus-article-buffer t))
(gnus-article-next-page)
(select-window win)))