Function: gnus-pick-next-page

gnus-pick-next-page is an interactive and byte-compiled function defined in gnus-salt.el.gz.

Signature

(gnus-pick-next-page)

Documentation

Go to the next page. If at the end of the buffer, start reading articles.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-salt.el.gz
(defun gnus-pick-next-page ()
  "Go to the next page.  If at the end of the buffer, start reading articles."
  (interactive)
  (let ((scroll-in-place nil))
    (condition-case nil
	(scroll-up)
      (end-of-buffer (gnus-pick-start-reading)))))