diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-08-26 21:27:24 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-08-26 21:27:24 +0000 |
commit | 685b1bef7530989a585ca4be6e189c39d3cd23c5 (patch) | |
tree | 5cbe8ef16daa8c2c810a7bef9d2af07310a7009f /lisp/apropos.el | |
parent | 942bbf2b2bee0e44bb6c25de573233584dc02907 (diff) | |
download | emacs-685b1bef7530989a585ca4be6e189c39d3cd23c5.tar.gz |
(apropos-mode-map): Don't use view-mode;
instead, bind SPC and DEL directly.
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r-- | lisp/apropos.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index 6dd736e880e..8d1bbfb186e 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -90,6 +90,8 @@ This looks good, but slows down the commands several times.") (defvar apropos-mode-map (let ((map (make-sparse-keymap))) (define-key map "\C-m" 'apropos-follow) + (define-key map " " 'scroll-up) + (define-key map "\177" 'scroll-down) (define-key map [mouse-2] 'apropos-mouse-follow) (define-key map [down-mouse-2] nil) map) @@ -115,7 +117,6 @@ This looks good, but slows down the commands several times.") (interactive) (kill-all-local-variables) (use-local-map apropos-mode-map) - (view-mode) (setq major-mode 'apropos-mode mode-name "Apropos")) |