From: Richard M. Stallman Date: Thu, 4 Aug 1994 19:59:03 +0000 (+0000) Subject: (end-of-buffer-other-window): Go to the end, not to the beginning. X-Git-Tag: emacs-19.34~7411 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4500ff36ef0e0082a951a3870c3da86ab344d075;p=emacs.git (end-of-buffer-other-window): Go to the end, not to the beginning. --- diff --git a/lisp/simple.el b/lisp/simple.el index da837322c8f..839874a6e9e 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1734,7 +1734,7 @@ With arg N, put point N/10 of the way from the true end." (unwind-protect (progn (select-window window) - (beginning-of-buffer arg) + (end-of-buffer arg) (recenter '(t))) (select-window orig-window))))