changeset 44725:60dbf4a139f2

(scroll-all-beginning-of-buffer-all, scroll-all-end-of-buffer-all): Call beginning-of-buffer, end-of-buffer interactively.
author Glenn Morris <rgm@gnu.org>
date Sun, 21 Apr 2002 17:36:16 +0000
parents 867beadfbb38
children 079ae47e9744
files lisp/scroll-all.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/scroll-all.el	Sun Apr 21 17:15:46 2002 +0000
+++ b/lisp/scroll-all.el	Sun Apr 21 17:36:16 2002 +0000
@@ -119,7 +119,7 @@
     (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 @@
     (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))))))