1
Fork 0
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:
Glenn Morris 2002-04-21 17:36:16 +00:00
parent d278091be9
commit 5bba9cfd48

View file

@ -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))))))