Fix electric-help-map problem when help-char has meta-prefix
* lisp/ehelp.el (electric-help-map): Fix problem when help-char has meta-prefix (bug#54932).
This commit is contained in:
parent
a9b8ebf34c
commit
36da6ceb92
1 changed files with 4 additions and 1 deletions
|
@ -76,7 +76,10 @@
|
|||
(define-key map [?\C-7] 'electric-help-undefined)
|
||||
(define-key map [?\C-8] 'electric-help-undefined)
|
||||
(define-key map [?\C-9] 'electric-help-undefined)
|
||||
(define-key map (char-to-string help-char) 'electric-help-help)
|
||||
(define-key map (if (characterp help-char)
|
||||
(char-to-string help-char)
|
||||
(vector help-char))
|
||||
'electric-help-help)
|
||||
(define-key map "?" 'electric-help-help)
|
||||
(define-key map " " 'scroll-up)
|
||||
(define-key map [?\S-\ ] 'scroll-down)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue