summaryrefslogtreecommitdiff
path: root/lisp/help.el
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1992-08-03 22:07:34 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1992-08-03 22:07:34 +0000
commite17d2fd17924c106f91b1cbc8d0a38561e7f00ad (patch)
tree14ba5ac9fa19318759a2abf15489f785d17306db /lisp/help.el
parent8892e83c7c27d449031dd7939dcc7dee3524f49c (diff)
downloademacs-e17d2fd17924c106f91b1cbc8d0a38561e7f00ad.tar.gz
entered into RCS
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 29cf96e42fc..89ed440ff20 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -26,10 +26,10 @@
(defvar help-map (make-sparse-keymap)
"Keymap for characters following the Help key.")
-(define-key global-map help-key 'help-command)
+(define-key global-map (char-to-string help-char) 'help-command)
(fset 'help-command help-map)
-(define-key help-map help-char 'help-for-help)
+(define-key help-map (char-to-string help-char) 'help-for-help)
(define-key help-map "?" 'help-for-help)
(define-key help-map "\C-c" 'describe-copying)