Function: scroll-down-line

scroll-down-line is an interactive and byte-compiled function defined in window.el.gz.

Signature

(scroll-down-line &optional ARG)

Documentation

Scroll text of selected window down ARG lines; or one line if no ARG.

If ARG is omitted or nil, scroll down by one line. This is different from scroll-down-command that scrolls a full screen.

View in manual

Probably introduced at or before Emacs version 24.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun scroll-down-line (&optional arg)
  "Scroll text of selected window down ARG lines; or one line if no ARG.
If ARG is omitted or nil, scroll down by one line.
This is different from `scroll-down-command' that scrolls a full screen."
  (interactive "p")
  (scroll-down (or arg 1)))