* hexl.el (hexl-mode-map): When initializing, remember that the
argument to key-binding is a key sequence, not a single key.
This commit is contained in:
parent
0ca90494a9
commit
b9a4b5011e
1 changed files with 1 additions and 1 deletions
|
@ -586,7 +586,7 @@ You may also type up to 3 octal digits, to insert a character with that code"
|
|||
(define-key hexl-mode-map "\C-e" 'hexl-end-of-line)
|
||||
(define-key hexl-mode-map "\C-f" 'hexl-forward-char)
|
||||
|
||||
(if (not (eq (key-binding help-char) 'help-command))
|
||||
(if (not (eq (key-binding (char-to-string help-char)) 'help-command))
|
||||
(define-key hexl-mode-map help-char 'undefined))
|
||||
|
||||
(define-key hexl-mode-map "\C-i" 'hexl-self-insert-command)
|
||||
|
|
Loading…
Add table
Reference in a new issue