diff options
| author | Juri Linkov | 2010-05-11 22:42:21 +0300 |
|---|---|---|
| committer | Juri Linkov | 2010-05-11 22:42:21 +0300 |
| commit | 841c4085a8087b8c5bc138d5129f7e07f3e18f5f (patch) | |
| tree | 226c292b91789088ba1979179a83a466f2e7dc4c | |
| parent | f2b9ed185adcd8e49934ebaa9247cac49dcc0d1b (diff) | |
| download | emacs-841c4085a8087b8c5bc138d5129f7e07f3e18f5f.tar.gz emacs-841c4085a8087b8c5bc138d5129f7e07f3e18f5f.zip | |
* scroll-all.el (scroll-all-check-to-scroll):
Add `scroll-up-command' and `scroll-down-command' (bug#6164).
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/scroll-all.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1189b7c658c..92edd9b380c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-05-11 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * scroll-all.el (scroll-all-check-to-scroll): | ||
| 4 | Add `scroll-up-command' and `scroll-down-command' (bug#6164). | ||
| 5 | |||
| 1 | 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * iimage.el (iimage-mode-map): Move initialization into declaration. | 8 | * iimage.el (iimage-mode-map): Move initialization into declaration. |
diff --git a/lisp/scroll-all.el b/lisp/scroll-all.el index 458e2be07a1..4f9747cb90a 100644 --- a/lisp/scroll-all.el +++ b/lisp/scroll-all.el | |||
| @@ -90,9 +90,9 @@ | |||
| 90 | (call-interactively 'scroll-all-scroll-down-all)) | 90 | (call-interactively 'scroll-all-scroll-down-all)) |
| 91 | ((eq this-command 'previous-line) | 91 | ((eq this-command 'previous-line) |
| 92 | (call-interactively 'scroll-all-scroll-up-all)) | 92 | (call-interactively 'scroll-all-scroll-up-all)) |
| 93 | ((eq this-command 'scroll-up) | 93 | ((memq this-command '(scroll-up scroll-up-command)) |
| 94 | (call-interactively 'scroll-all-page-down-all)) | 94 | (call-interactively 'scroll-all-page-down-all)) |
| 95 | ((eq this-command 'scroll-down) | 95 | ((memq this-command '(scroll-down scroll-down-command)) |
| 96 | (call-interactively 'scroll-all-page-up-all)) | 96 | (call-interactively 'scroll-all-page-up-all)) |
| 97 | ((eq this-command 'beginning-of-buffer) | 97 | ((eq this-command 'beginning-of-buffer) |
| 98 | (call-interactively 'scroll-all-beginning-of-buffer-all)) | 98 | (call-interactively 'scroll-all-beginning-of-buffer-all)) |