From: Richard M. Stallman Date: Mon, 26 Aug 1996 21:27:24 +0000 (+0000) Subject: (apropos-mode-map): Don't use view-mode; X-Git-Tag: emacs-20.1~4006 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=685b1bef7530989a585ca4be6e189c39d3cd23c5;p=emacs.git (apropos-mode-map): Don't use view-mode; instead, bind SPC and DEL directly. --- 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"))