From 4500ff36ef0e0082a951a3870c3da86ab344d075 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 4 Aug 1994 19:59:03 +0000 Subject: [PATCH] (end-of-buffer-other-window): Go to the end, not to the beginning. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))) -- 2.39.5