aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-08-26 21:27:24 +0000
committerRichard M. Stallman <[email protected]>1996-08-26 21:27:24 +0000
commit685b1bef7530989a585ca4be6e189c39d3cd23c5 (patch)
tree5cbe8ef16daa8c2c810a7bef9d2af07310a7009f /lisp
parent942bbf2b2bee0e44bb6c25de573233584dc02907 (diff)
(apropos-mode-map): Don't use view-mode;
instead, bind SPC and DEL directly.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/apropos.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el
index 6dd736e880..8d1bbfb186 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"))