Function: edt-scroll-window-backward
edt-scroll-window-backward is an interactive and byte-compiled
function defined in edt.el.gz.
Signature
(edt-scroll-window-backward NUM)
Documentation
Scroll backward one window in buffer, less one line.
Argument NUM is the positive number of windows to move.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-scroll-window-backward (num)
"Scroll backward one window in buffer, less one line.
Argument NUM is the positive number of windows to move."
(interactive "p")
(edt-check-prefix num)
(scroll-down (- (* (window-height) num) 2))
(edt-line-backward (/ (- (window-height) 1) 2)))