diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2011-10-01 16:32:01 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-10-01 16:32:01 -0400 |
commit | ce3cefcca3227944d27d75e7de0f1e4f4b6d11a6 (patch) | |
tree | 7cffa923342b0b352d3e804d81594aa5ce63f1ba /lisp/simple.el | |
parent | b6bd159922608fa474026837771d63bf7eadcf97 (diff) | |
download | emacs-ce3cefcca3227944d27d75e7de0f1e4f4b6d11a6.tar.gz |
Change scroll-up/down bindings to Emacs 24's scroll-*-command.
* cus-edit.el (custom-mode-map):
* epa.el (epa-key-list-mode-map):
* man.el (Man-mode-map):
* startup.el (splash-screen-keymap):
* simple.el (special-mode-map): Use scroll-up-command and
scroll-down-command.
* progmodes/idlw-help.el (idlwave-help-mode-map):
* progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
* net/newst-plainview.el (newsticker-mode-map):
* emulation/ws-mode.el (wordstar-mode-map):
* emulation/vi.el (vi-com-map):
* calc/calc-graph.el (calc-graph-show-dumb):
* term/sun.el (terminal-init-sun):
* term/ns-win.el (global-map):
* progmodes/grep.el (grep-mode-map):
* progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
* mail/rmail.el (rmail-mode-map):
* progmodes/cpp.el (cpp-edit-mode-map): Likewise.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 1ab90792bfa..c81385680bf 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -357,8 +357,8 @@ Other major modes are defined by comparison with this one." (let ((map (make-sparse-keymap))) (suppress-keymap map) (define-key map "q" 'quit-window) - (define-key map " " 'scroll-up) - (define-key map "\C-?" 'scroll-down) + (define-key map " " 'scroll-up-command) + (define-key map "\C-?" 'scroll-down-command) (define-key map "?" 'describe-mode) (define-key map "h" 'describe-mode) (define-key map ">" 'end-of-buffer) |