Function: scroll-other-window-down
scroll-other-window-down is an interactive function defined in
window.c.
Signature
(scroll-other-window-down &optional ARG)
Documentation
Scroll next window downward ARG lines; or near full screen if no ARG.
For more details, see the documentation for scroll-other-window.
Probably introduced at or before Emacs version 19.26.
Key Bindings
Source Code
// Defined in /usr/src/emacs/src/window.c
{
ptrdiff_t count = SPECPDL_INDEX ();
scroll_command (Fother_window_for_scrolling (), arg, -1);
return unbind_to (count, Qnil);
}