1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

(scroll-all-mode): Move arg LIGHTER to the right place.

This commit is contained in:
Markus Rost 2002-11-23 01:44:30 +00:00
parent 5598c32e91
commit ddff27f94e
2 changed files with 8 additions and 2 deletions

View 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.

View File

@ -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)))