diff options
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) |