aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Rost2002-11-23 01:44:30 +0000
committerMarkus Rost2002-11-23 01:44:30 +0000
commitddff27f94ed85882b49fed090571b55e3042d680 (patch)
tree0a72c2cbd997038b04794fd07a2994d4f19026ec
parent5598c32e918827e8a956b145bbc4fb4b0445f657 (diff)
downloademacs-ddff27f94ed85882b49fed090571b55e3042d680.tar.gz
emacs-ddff27f94ed85882b49fed090571b55e3042d680.zip
(scroll-all-mode): Move arg LIGHTER to the right place.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/scroll-all.el5
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 @@
12002-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
12002-11-21 Nick Roberts <nick@nick.uklinux.net> 62002-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.
107With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise. 107With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise.
108When Scroll-All mode is on, scrolling commands entered in one window 108When Scroll-All mode is on, scrolling commands entered in one window
109apply to all visible windows in the same frame." 109apply 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)))