Function: gnus-summary-scroll-down

gnus-summary-scroll-down is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-scroll-down LINES)

Documentation

Scroll down (or up) one line current article.

Argument LINES specifies lines to be scrolled down (or up if negative). If no article is selected, then the current article will be selected first.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-scroll-down (lines)
  "Scroll down (or up) one line current article.
Argument LINES specifies lines to be scrolled down (or up if negative).
If no article is selected, then the current article will be selected first."
  (interactive "p" gnus-summary-mode)
  (gnus-summary-scroll-up (- lines)))