From 685b1bef7530989a585ca4be6e189c39d3cd23c5 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 26 Aug 1996 21:27:24 +0000 Subject: [PATCH] (apropos-mode-map): Don't use view-mode; instead, bind SPC and DEL directly. --- lisp/apropos.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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")) -- 2.39.2