From: Glenn Morris Date: Sun, 21 Apr 2002 17:36:16 +0000 (+0000) Subject: (scroll-all-beginning-of-buffer-all, scroll-all-end-of-buffer-all): Call X-Git-Tag: ttn-vms-21-2-B4~15500 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5bba9cfd48665a36a48ac95924c8084e376c135e;p=emacs.git (scroll-all-beginning-of-buffer-all, scroll-all-end-of-buffer-all): Call beginning-of-buffer, end-of-buffer interactively. --- diff --git a/lisp/scroll-all.el b/lisp/scroll-all.el index 0126a601617..a72c422724c 100644 --- a/lisp/scroll-all.el +++ b/lisp/scroll-all.el @@ -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))))))