diff options
| author | Markus Rost | 2002-11-23 01:44:30 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-11-23 01:44:30 +0000 |
| commit | ddff27f94ed85882b49fed090571b55e3042d680 (patch) | |
| tree | 0a72c2cbd997038b04794fd07a2994d4f19026ec | |
| parent | 5598c32e918827e8a956b145bbc4fb4b0445f657 (diff) | |
| download | emacs-ddff27f94ed85882b49fed090571b55e3042d680.tar.gz emacs-ddff27f94ed85882b49fed090571b55e3042d680.zip | |
(scroll-all-mode): Move arg LIGHTER to the right place.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/scroll-all.el | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c758da35931..10c4b139336 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-11-23 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * scroll-all.el (scroll-all-mode): Move arg LIGHTER to the right | ||
| 4 | place. | ||
| 5 | |||
| 1 | 2002-11-21 Nick Roberts <nick@nick.uklinux.net> | 6 | 2002-11-21 Nick Roberts <nick@nick.uklinux.net> |
| 2 | 7 | ||
| 3 | * gdb-ui.el : General tidying. Patches from Stefan Monnier. | 8 | * gdb-ui.el : General tidying. Patches from Stefan Monnier. |
diff --git a/lisp/scroll-all.el b/lisp/scroll-all.el index b1b03136a39..ac8ea6675fa 100644 --- a/lisp/scroll-all.el +++ b/lisp/scroll-all.el | |||
| @@ -102,12 +102,13 @@ | |||
| 102 | 102 | ||
| 103 | 103 | ||
| 104 | ;;;###autoload | 104 | ;;;###autoload |
| 105 | (define-minor-mode scroll-all-mode " *SL*" | 105 | (define-minor-mode scroll-all-mode |
| 106 | "Toggle Scroll-All minor mode. | 106 | "Toggle Scroll-All minor mode. |
| 107 | With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise. | 107 | With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise. |
| 108 | When Scroll-All mode is on, scrolling commands entered in one window | 108 | When Scroll-All mode is on, scrolling commands entered in one window |
| 109 | apply to all visible windows in the same frame." | 109 | apply to all visible windows in the same frame." |
| 110 | :global t | 110 | nil " *SL*" nil |
| 111 | :global t | ||
| 111 | (if scroll-all-mode | 112 | (if scroll-all-mode |
| 112 | (add-hook 'post-command-hook 'scroll-all-check-to-scroll) | 113 | (add-hook 'post-command-hook 'scroll-all-check-to-scroll) |
| 113 | (remove-hook 'post-command-hook 'scroll-all-check-to-scroll))) | 114 | (remove-hook 'post-command-hook 'scroll-all-check-to-scroll))) |