summaryrefslogtreecommitdiff
path: root/lisp/scroll-all.el
diff options
context:
space:
mode:
authorMarkus Rost <rost@math.uni-bielefeld.de>2002-11-23 01:44:30 +0000
committerMarkus Rost <rost@math.uni-bielefeld.de>2002-11-23 01:44:30 +0000
commitddff27f94ed85882b49fed090571b55e3042d680 (patch)
tree0a72c2cbd997038b04794fd07a2994d4f19026ec /lisp/scroll-all.el
parent5598c32e918827e8a956b145bbc4fb4b0445f657 (diff)
downloademacs-ddff27f94ed85882b49fed090571b55e3042d680.tar.gz
(scroll-all-mode): Move arg LIGHTER to the right place.
Diffstat (limited to 'lisp/scroll-all.el')
-rw-r--r--lisp/scroll-all.el5
1 files changed, 3 insertions, 2 deletions
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 @@
;;;###autoload
-(define-minor-mode scroll-all-mode " *SL*"
+(define-minor-mode scroll-all-mode
"Toggle Scroll-All minor mode.
With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise.
When Scroll-All mode is on, scrolling commands entered in one window
apply to all visible windows in the same frame."
- :global t
+ nil " *SL*" nil
+ :global t
(if scroll-all-mode
(add-hook 'post-command-hook 'scroll-all-check-to-scroll)
(remove-hook 'post-command-hook 'scroll-all-check-to-scroll)))