diff options
Diffstat (limited to 'lisp/scroll-all.el')
-rw-r--r-- | lisp/scroll-all.el | 4 |
1 files changed, 2 insertions, 2 deletions
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)))))) |