Function: gnus-article-goto-prev-page
gnus-article-goto-prev-page is an interactive and byte-compiled
function defined in gnus-art.el.gz.
Signature
(gnus-article-goto-prev-page)
Documentation
Show the previous page of the article.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-goto-prev-page ()
"Show the previous page of the article."
(interactive nil gnus-article-mode)
(if (save-restriction (widen) (bobp)) ;; Real beginning-of-buffer?
(gnus-article-read-summary-keys nil ?p)
(gnus-article-prev-page nil)))