summaryrefslogtreecommitdiff
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-08-04 19:59:03 +0000
committerRichard M. Stallman <rms@gnu.org>1994-08-04 19:59:03 +0000
commit4500ff36ef0e0082a951a3870c3da86ab344d075 (patch)
treea0a4f0aecc33231ac251fab9d0d8dff6b026ae64 /lisp/simple.el
parent7c496a7928ef7eb69064aad20d9729c6c77c12e9 (diff)
downloademacs-4500ff36ef0e0082a951a3870c3da86ab344d075.tar.gz
(end-of-buffer-other-window): Go to the end, not to the beginning.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
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))))