# HG changeset patch # User Jim Blandy # Date 731057203 0 # Node ID d7fd2aa5185a21c50f2098693c036d5260c7a69b # Parent ca6059bb1d6f04156ffc31605107a634b7e8477e * hexl.el (hexl-mode-map): When initializing, remember that the argument to key-binding is a key sequence, not a single key. diff -r ca6059bb1d6f -r d7fd2aa5185a lisp/hexl.el --- a/lisp/hexl.el Tue Mar 02 07:25:44 1993 +0000 +++ b/lisp/hexl.el Tue Mar 02 07:26:43 1993 +0000 @@ -586,7 +586,7 @@ (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)