mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(scroll-all-beginning-of-buffer-all, scroll-all-end-of-buffer-all): Call
beginning-of-buffer, end-of-buffer interactively.
This commit is contained in:
parent
d278091be9
commit
5bba9cfd48
1 changed files with 2 additions and 2 deletions
|
|
@ -119,7 +119,7 @@ use either M-x customize or the function `scroll-all-mode'."
|
|||
(when (> num-windows 1)
|
||||
(other-window 1)
|
||||
(while (< count num-windows)
|
||||
(beginning-of-buffer)
|
||||
(call-interactively 'beginning-of-buffer)
|
||||
(other-window 1)
|
||||
(setq count (1+ count))))))
|
||||
|
||||
|
|
@ -131,7 +131,7 @@ use either M-x customize or the function `scroll-all-mode'."
|
|||
(when (> num-windows 1)
|
||||
(other-window 1)
|
||||
(while (< count num-windows)
|
||||
(end-of-buffer)
|
||||
(call-interactively 'end-of-buffer)
|
||||
(other-window 1)
|
||||
(setq count (1+ count))))))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue