* scroll-all.el (scroll-all-check-to-scroll):
Add `scroll-up-command' and `scroll-down-command' (bug#6164).
This commit is contained in:
parent
f2b9ed185a
commit
841c4085a8
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-05-11 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* scroll-all.el (scroll-all-check-to-scroll):
|
||||
Add `scroll-up-command' and `scroll-down-command' (bug#6164).
|
||||
|
||||
2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* iimage.el (iimage-mode-map): Move initialization into declaration.
|
||||
|
|
|
@ -90,9 +90,9 @@
|
|||
(call-interactively 'scroll-all-scroll-down-all))
|
||||
((eq this-command 'previous-line)
|
||||
(call-interactively 'scroll-all-scroll-up-all))
|
||||
((eq this-command 'scroll-up)
|
||||
((memq this-command '(scroll-up scroll-up-command))
|
||||
(call-interactively 'scroll-all-page-down-all))
|
||||
((eq this-command 'scroll-down)
|
||||
((memq this-command '(scroll-down scroll-down-command))
|
||||
(call-interactively 'scroll-all-page-up-all))
|
||||
((eq this-command 'beginning-of-buffer)
|
||||
(call-interactively 'scroll-all-beginning-of-buffer-all))
|
||||
|
|
Loading…
Add table
Reference in a new issue