]> git.eshelyaron.com Git - emacs.git/commitdiff
(scroll-all-mode): Move arg LIGHTER to the right place.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Sat, 23 Nov 2002 01:44:30 +0000 (01:44 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Sat, 23 Nov 2002 01:44:30 +0000 (01:44 +0000)
lisp/ChangeLog
lisp/scroll-all.el

index c758da35931a6f26e58428bddb24b4be546022d4..10c4b139336656d67b7a4f594e86ece55e58266f 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-23   Markus Rost  <rost@math.ohio-state.edu>
+
+       * scroll-all.el (scroll-all-mode): Move arg LIGHTER to the right
+       place.
+
 2002-11-21  Nick Roberts  <nick@nick.uklinux.net>
 
        * gdb-ui.el : General tidying. Patches from Stefan Monnier.
index b1b03136a39fe1e73c326bd5d3856eda7f95da72..ac8ea6675fa40e79b0293146b0b6e7e97a6d12d7 100644 (file)
  
 
 ;;;###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)))