diff options
| author | Richard M. Stallman <rms@gnu.org> | 1994-08-04 19:59:03 +0000 | 
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1994-08-04 19:59:03 +0000 | 
| commit | 4500ff36ef0e0082a951a3870c3da86ab344d075 (patch) | |
| tree | a0a4f0aecc33231ac251fab9d0d8dff6b026ae64 /lisp/simple.el | |
| parent | 7c496a7928ef7eb69064aad20d9729c6c77c12e9 (diff) | |
| download | emacs-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.el | 2 | 
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)))) | 
