Function: minibuffer-scroll-other-window
minibuffer-scroll-other-window is an interactive and byte-compiled
function defined in minibuffer.el.gz.
Signature
(minibuffer-scroll-other-window &optional ARG)
Documentation
Run scroll-other-window from the minibuffer in its original window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun minibuffer-scroll-other-window (&optional arg)
"Run `scroll-other-window' from the minibuffer in its original window."
(interactive "P")
(with-minibuffer-selected-window
(scroll-other-window arg)))