]> git.eshelyaron.com Git - emacs.git/commitdiff
(apropos-mode-map): Don't use view-mode;
authorRichard M. Stallman <rms@gnu.org>
Mon, 26 Aug 1996 21:27:24 +0000 (21:27 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 26 Aug 1996 21:27:24 +0000 (21:27 +0000)
instead, bind SPC and DEL directly.

lisp/apropos.el

index 6dd736e880e580f1765298ba7adf6140dff61f8a..8d1bbfb186e6761e18d796bd7e448ce2bda77bd3 100644 (file)
@@ -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"))