# HG changeset patch # User Richard M. Stallman # Date 776030343 0 # Node ID 05efaa4966e08ad7b5bc2e4dcd51ecf4217153af # Parent cb9d52c38ed70e2b05fecc02551a43750e1ea262 (end-of-buffer-other-window): Go to the end, not to the beginning. diff -r cb9d52c38ed7 -r 05efaa4966e0 lisp/simple.el --- a/lisp/simple.el Thu Aug 04 08:22:09 1994 +0000 +++ b/lisp/simple.el Thu Aug 04 19:59:03 1994 +0000 @@ -1734,7 +1734,7 @@ (unwind-protect (progn (select-window window) - (beginning-of-buffer arg) + (end-of-buffer arg) (recenter '(t))) (select-window orig-window))))