Function: end-of-buffer-other-window
end-of-buffer-other-window is an interactive and byte-compiled
function defined in window.el.gz.
Signature
(end-of-buffer-other-window ARG)
Documentation
Move point to the end of the buffer in the other window.
Leave mark at previous position. With arg N, put point N/10 of the way from the true end.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun end-of-buffer-other-window (arg)
"Move point to the end of the buffer in the other window.
Leave mark at previous position.
With arg N, put point N/10 of the way from the true end."
(interactive "P")
;; See beginning-of-buffer-other-window for comments.
(with-selected-window (other-window-for-scrolling)
(with-no-warnings
(end-of-buffer arg))
(recenter '(t))))