]> git.eshelyaron.com Git - emacs.git/commitdiff
(scroll-all-beginning-of-buffer-all, scroll-all-end-of-buffer-all): Call
authorGlenn Morris <rgm@gnu.org>
Sun, 21 Apr 2002 17:36:16 +0000 (17:36 +0000)
committerGlenn Morris <rgm@gnu.org>
Sun, 21 Apr 2002 17:36:16 +0000 (17:36 +0000)
beginning-of-buffer, end-of-buffer interactively.

lisp/scroll-all.el

index 0126a6016171bd51f6b31087401029c2a9512acf..a72c422724c70297c9958986aa48c7b7212fabd4 100644 (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))))))