Mercurial > emacs
changeset 15938:51e5593fad49
(apropos-mode-map): Don't use view-mode;
instead, bind SPC and DEL directly.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 26 Aug 1996 21:27:24 +0000 |
parents | ab395798ed22 |
children | dede4f09f223 |
files | lisp/apropos.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/apropos.el Mon Aug 26 21:20:48 1996 +0000 +++ b/lisp/apropos.el Mon Aug 26 21:27:24 1996 +0000 @@ -90,6 +90,8 @@ (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 @@ (interactive) (kill-all-local-variables) (use-local-map apropos-mode-map) - (view-mode) (setq major-mode 'apropos-mode mode-name "Apropos"))