summaryrefslogtreecommitdiff
path: root/lisp/apropos.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-05-02 05:05:55 +0000
committerRichard M. Stallman <rms@gnu.org>1998-05-02 05:05:55 +0000
commit5b23b5e40b28f04208925e2850743ca3cae2ae88 (patch)
tree75127f3d8c1aef512a91ef027afd60e0eaf7d23b /lisp/apropos.el
parent779a69a822aa3c30df037eeb5c535ce24c78267b (diff)
downloademacs-5b23b5e40b28f04208925e2850743ca3cae2ae88.tar.gz
(apropos-mode-map): Bind q to quit-window.
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r--lisp/apropos.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el
index 89ea5e46144..90fa4309f1b 100644
--- a/lisp/apropos.el
+++ b/lisp/apropos.el
@@ -108,8 +108,9 @@ 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 " " 'scroll-up)
+ (define-key map "\177" 'scroll-down)
+ (define-key map "q" 'quit-window)
(define-key map [mouse-2] 'apropos-mouse-follow)
(define-key map [down-mouse-2] nil)
map)