Function: follow-scroll-up-window
follow-scroll-up-window is an autoloaded, interactive and
byte-compiled function defined in follow.el.gz.
Signature
(follow-scroll-up-window &optional ARG)
Documentation
Scroll text in a Follow mode window up by that window's size.
The other windows in the window chain will scroll synchronously.
If called with no ARG, the next-screen-context-lines last lines of
the window will be visible after the scroll.
If called with an argument, scroll ARG lines up. Negative ARG means scroll downward.
Works like scroll-up when not in Follow mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/follow.el.gz
;;;###autoload
(defun follow-scroll-up-window (&optional arg)
"Scroll text in a Follow mode window up by that window's size.
The other windows in the window chain will scroll synchronously.
If called with no ARG, the `next-screen-context-lines' last lines of
the window will be visible after the scroll.
If called with an argument, scroll ARG lines up.
Negative ARG means scroll downward.
Works like `scroll-up' when not in Follow mode."
(interactive "P")
(cond ((not follow-mode)
(scroll-up-command arg))
((eq arg '-)
(follow-scroll-down-window))
(t (follow-scroll-up-arg arg))))