summaryrefslogtreecommitdiff
path: root/lisp/ehelp.el
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2004-11-01 23:16:25 +0000
committerKim F. Storm <storm@cua.dk>2004-11-01 23:16:25 +0000
commitad8d994cbecb75742754f1a9d56e5f1b11950e78 (patch)
treec145216221c0bd8a575e9c4fee9d674e784be01f /lisp/ehelp.el
parent3fc26d4804fac2ed6c3828b9c08037a6cb1a8920 (diff)
downloademacs-ad8d994cbecb75742754f1a9d56e5f1b11950e78.tar.gz
(electric-help-map): Reorder Q/q and R/r entries so
substitute-command-keys will select lower-case bindings like those used in the static help texts.
Diffstat (limited to 'lisp/ehelp.el')
-rw-r--r--lisp/ehelp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ehelp.el b/lisp/ehelp.el
index e80c129d3ea..82a8e10301e 100644
--- a/lisp/ehelp.el
+++ b/lisp/ehelp.el
@@ -85,11 +85,11 @@
(define-key map "<" 'beginning-of-buffer)
(define-key map ">" 'end-of-buffer)
;(define-key map "\C-g" 'electric-help-exit)
- (define-key map "q" 'electric-help-exit)
(define-key map "Q" 'electric-help-exit)
+ (define-key map "q" 'electric-help-exit)
;;a better key than this?
- (define-key map "r" 'electric-help-retain)
(define-key map "R" 'electric-help-retain)
+ (define-key map "r" 'electric-help-retain)
(define-key map "\ex" 'electric-help-execute-extended)
(define-key map "\C-x" 'electric-help-ctrl-x-prefix)