# HG changeset patch # User Richard M. Stallman # Date 894085555 0 # Node ID 7f104a4fc5671f42d24b4197a4e5759bfd35627f # Parent ff66bfc5d80180bdbc31acfdbdd3da9eae1d592c (apropos-mode-map): Bind q to quit-window. diff -r ff66bfc5d801 -r 7f104a4fc567 lisp/apropos.el --- a/lisp/apropos.el Sat May 02 02:06:41 1998 +0000 +++ b/lisp/apropos.el Sat May 02 05:05:55 1998 +0000 @@ -108,8 +108,9 @@ (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)