aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMarkus Rost2002-11-23 03:26:24 +0000
committerMarkus Rost2002-11-23 03:26:24 +0000
commit3ff2317b2f52f33cd6d99a181da2b7c2b7fc3e9d (patch)
treee867c577528499c929ede544fab9ff1b3c9a62cb /lisp
parentddff27f94ed85882b49fed090571b55e3042d680 (diff)
downloademacs-3ff2317b2f52f33cd6d99a181da2b7c2b7fc3e9d.tar.gz
emacs-3ff2317b2f52f33cd6d99a181da2b7c2b7fc3e9d.zip
(scroll-all-mode): Add groups.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/scroll-all.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 10c4b139336..06e9ed11580 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,7 @@
12002-11-23 Markus Rost <rost@math.ohio-state.edu> 12002-11-23 Markus Rost <rost@math.ohio-state.edu>
2 2
3 * scroll-all.el (scroll-all-mode): Move arg LIGHTER to the right 3 * scroll-all.el (scroll-all-mode): Move arg LIGHTER to the right
4 place. 4 place. Add groups.
5 5
62002-11-21 Nick Roberts <nick@nick.uklinux.net> 62002-11-21 Nick Roberts <nick@nick.uklinux.net>
7 7
diff --git a/lisp/scroll-all.el b/lisp/scroll-all.el
index ac8ea6675fa..c17b251353f 100644
--- a/lisp/scroll-all.el
+++ b/lisp/scroll-all.el
@@ -109,6 +109,8 @@ When 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 nil " *SL*" nil 110 nil " *SL*" nil
111 :global t 111 :global t
112 :group 'windows
113 :group 'scrolling
112 (if scroll-all-mode 114 (if scroll-all-mode
113 (add-hook 'post-command-hook 'scroll-all-check-to-scroll) 115 (add-hook 'post-command-hook 'scroll-all-check-to-scroll)
114 (remove-hook 'post-command-hook 'scroll-all-check-to-scroll))) 116 (remove-hook 'post-command-hook 'scroll-all-check-to-scroll)))