# HG changeset patch # User Glenn Morris # Date 1019410576 0 # Node ID 60dbf4a139f25b6b862f46d353df4497d59e3ee6 # Parent 867beadfbb38c9391c801d477b7eb93dea6594c8 (scroll-all-beginning-of-buffer-all, scroll-all-end-of-buffer-all): Call beginning-of-buffer, end-of-buffer interactively. diff -r 867beadfbb38 -r 60dbf4a139f2 lisp/scroll-all.el --- 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))))))