aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-04-22 07:50:50 +0000
committerRichard M. Stallman <[email protected]>2002-04-22 07:50:50 +0000
commitc9787897df86906ff853f9d09525d6b0adb995aa (patch)
tree7e4582a9784ed2cbdfec5ab949a4ed632a46c133
parent8d60818b54d2a4c76f005423d0949138cb7845fb (diff)
Whitespace changes.
-rw-r--r--lisp/scroll-all.el105
1 files changed, 52 insertions, 53 deletions
diff --git a/lisp/scroll-all.el b/lisp/scroll-all.el
index a72c422724..3a9e019cb4 100644
--- a/lisp/scroll-all.el
+++ b/lisp/scroll-all.el
@@ -63,94 +63,93 @@ use either M-x customize or the function `scroll-all-mode'."
"Scroll down all visible windows."
(interactive "P")
(let ((num-windows (count-windows))
- (count 1))
+ (count 1))
(when (> num-windows 1)
- (other-window 1)
- (while (< count num-windows)
- (if (not (eq (point) (point-max)))
- (call-interactively 'next-line))
- (other-window 1)
- (setq count (1+ count))))))
+ (other-window 1)
+ (while (< count num-windows)
+ (if (not (eq (point) (point-max)))
+ (call-interactively 'next-line))
+ (other-window 1)
+ (setq count (1+ count))))))
(defun scroll-all-scroll-up-all (arg)
"Scroll up all visible windows."
(interactive "P")
(let ((num-windows (count-windows))
- (count 1))
+ (count 1))
(when (> num-windows 1)
- (other-window 1)
- (while (< count num-windows)
- (if (not (eq (point) (point-min)))
- (call-interactively 'previous-line))
- (other-window 1)
- (setq count (1+ count))))))
+ (other-window 1)
+ (while (< count num-windows)
+ (if (not (eq (point) (point-min)))
+ (call-interactively 'previous-line))
+ (other-window 1)
+ (setq count (1+ count))))))
(defun scroll-all-page-down-all (arg)
"Page down in all visible windows."
(interactive "P")
(let ((num-windows (count-windows))
- (count 1))
+ (count 1))
(when (> num-windows 1)
- (other-window 1)
- (while (< count num-windows)
- (condition-case nil
- (call-interactively 'scroll-up) (end-of-buffer nil))
- (other-window 1)
- (setq count (1+ count))))))
+ (other-window 1)
+ (while (< count num-windows)
+ (condition-case nil
+ (call-interactively 'scroll-up) (end-of-buffer nil))
+ (other-window 1)
+ (setq count (1+ count))))))
(defun scroll-all-page-up-all (arg)
"Page up in all visible windows."
(interactive "P")
(let ((num-windows (count-windows))
- (count 1))
+ (count 1))
(when (> num-windows 1)
- (other-window 1)
- (while (< count num-windows)
- (condition-case nil
- (call-interactively 'scroll-down) (beginning-of-buffer nil))
- (other-window 1)
- (setq count (1+ count))))))
+ (other-window 1)
+ (while (< count num-windows)
+ (condition-case nil
+ (call-interactively 'scroll-down) (beginning-of-buffer nil))
+ (other-window 1)
+ (setq count (1+ count))))))
(defun scroll-all-beginning-of-buffer-all (arg)
"Go to the beginning of the buffer in all visible windows."
(interactive "P")
(let ((num-windows (count-windows))
- (count 1))
+ (count 1))
(when (> num-windows 1)
- (other-window 1)
- (while (< count num-windows)
- (call-interactively 'beginning-of-buffer)
- (other-window 1)
- (setq count (1+ count))))))
+ (other-window 1)
+ (while (< count num-windows)
+ (call-interactively 'beginning-of-buffer)
+ (other-window 1)
+ (setq count (1+ count))))))
(defun scroll-all-end-of-buffer-all (arg)
"Go to the end of the buffer in all visible windows."
(interactive "P")
(let ((num-windows (count-windows))
- (count 1))
+ (count 1))
(when (> num-windows 1)
- (other-window 1)
- (while (< count num-windows)
- (call-interactively 'end-of-buffer)
- (other-window 1)
- (setq count (1+ count))))))
+ (other-window 1)
+ (while (< count num-windows)
+ (call-interactively 'end-of-buffer)
+ (other-window 1)
+ (setq count (1+ count))))))
(defun scroll-all-check-to-scroll ()
"Check `this-command' to see if a scroll is to be done."
- (cond
- ((eq this-command 'next-line)
- (call-interactively 'scroll-all-scroll-down-all))
- ((eq this-command 'previous-line)
- (call-interactively 'scroll-all-scroll-up-all))
- ((eq this-command 'scroll-up)
- (call-interactively 'scroll-all-page-down-all))
- ((eq this-command 'scroll-down)
- (call-interactively 'scroll-all-page-up-all))
- ((eq this-command 'beginning-of-buffer)
- (call-interactively 'scroll-all-beginning-of-buffer-all))
- ((eq this-command 'end-of-buffer)
- (call-interactively 'scroll-all-end-of-buffer-all))))
+ (cond ((eq this-command 'next-line)
+ (call-interactively 'scroll-all-scroll-down-all))
+ ((eq this-command 'previous-line)
+ (call-interactively 'scroll-all-scroll-up-all))
+ ((eq this-command 'scroll-up)
+ (call-interactively 'scroll-all-page-down-all))
+ ((eq this-command 'scroll-down)
+ (call-interactively 'scroll-all-page-up-all))
+ ((eq this-command 'beginning-of-buffer)
+ (call-interactively 'scroll-all-beginning-of-buffer-all))
+ ((eq this-command 'end-of-buffer)
+ (call-interactively 'scroll-all-end-of-buffer-all))))
;;;###autoload