diff options
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) |