diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/scroll-all.el | 1 | ||||
| -rw-r--r-- | lisp/window.el | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4b1fa58108f..a21d5841346 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2012-04-15 Chong Yidong <cyd@gnu.org> | 1 | 2012-04-15 Chong Yidong <cyd@gnu.org> |
| 2 | 2 | ||
| 3 | * frame.el (scrolling): Remove nearly unused customization group. | ||
| 4 | |||
| 5 | * scroll-all.el (scroll-all-mode): Move to windows group. | ||
| 6 | |||
| 7 | 2012-04-15 Chong Yidong <cyd@gnu.org> | ||
| 8 | |||
| 3 | * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240). | 9 | * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240). |
| 4 | 10 | ||
| 5 | 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca> | 11 | 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca> |
diff --git a/lisp/scroll-all.el b/lisp/scroll-all.el index 9ff0a61db2f..fed886c2b55 100644 --- a/lisp/scroll-all.el +++ b/lisp/scroll-all.el | |||
| @@ -111,7 +111,6 @@ one window apply to all visible windows in the same frame." | |||
| 111 | nil " *SL*" nil | 111 | nil " *SL*" nil |
| 112 | :global t | 112 | :global t |
| 113 | :group 'windows | 113 | :group 'windows |
| 114 | :group 'scrolling | ||
| 115 | (if scroll-all-mode | 114 | (if scroll-all-mode |
| 116 | (add-hook 'post-command-hook 'scroll-all-check-to-scroll) | 115 | (add-hook 'post-command-hook 'scroll-all-check-to-scroll) |
| 117 | (remove-hook 'post-command-hook 'scroll-all-check-to-scroll))) | 116 | (remove-hook 'post-command-hook 'scroll-all-check-to-scroll))) |
diff --git a/lisp/window.el b/lisp/window.el index ca2cc9e7950..934b6067d08 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -5443,7 +5443,7 @@ A value of t means point moves to the beginning or the end of the buffer | |||
| 5443 | \(depending on scrolling direction) when no more scrolling possible. | 5443 | \(depending on scrolling direction) when no more scrolling possible. |
| 5444 | When point is already on that position, then signal an error." | 5444 | When point is already on that position, then signal an error." |
| 5445 | :type 'boolean | 5445 | :type 'boolean |
| 5446 | :group 'scrolling | 5446 | :group 'windows |
| 5447 | :version "24.1") | 5447 | :version "24.1") |
| 5448 | 5448 | ||
| 5449 | (defun scroll-up-command (&optional arg) | 5449 | (defun scroll-up-command (&optional arg) |