diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 1992-08-03 22:07:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1992-08-03 22:07:34 +0000 |
commit | e17d2fd17924c106f91b1cbc8d0a38561e7f00ad (patch) | |
tree | 14ba5ac9fa19318759a2abf15489f785d17306db /lisp/help.el | |
parent | 8892e83c7c27d449031dd7939dcc7dee3524f49c (diff) | |
download | emacs-e17d2fd17924c106f91b1cbc8d0a38561e7f00ad.tar.gz |
entered into RCS
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 4 |
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) |