Function: scroll-other-window-down
scroll-other-window-down is an interactive and byte-compiled function
defined in window.el.gz.
Signature
(scroll-other-window-down &optional LINES)
Documentation
Scroll next window downward LINES lines; or near full screen if no ARG.
See scroll-down-command for details.
Probably introduced at or before Emacs version 19.26.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun scroll-other-window-down (&optional lines)
"Scroll next window downward LINES lines; or near full screen if no ARG.
See `scroll-down-command' for details."
(interactive "P")
(with-selected-window (other-window-for-scrolling)
(funcall (or (command-remapping #'scroll-down-command)
#'scroll-down-command)
lines)))