From 7e17a6aade91bb0d90f39a17a987295e803501b4 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 28 May 1994 04:11:29 +0000 Subject: [PATCH] (hexl-mode-map): Call define-key properly for help-char. --- lisp/hexl.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/hexl.el b/lisp/hexl.el index 130a2573a14..f45540c599d 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -614,7 +614,7 @@ You may also type up to 3 octal digits, to insert a character with that code" (define-key hexl-mode-map "\C-f" 'hexl-forward-char) (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 (char-to-string help-char) 'undefined)) (define-key hexl-mode-map "\C-i" 'hexl-self-insert-command) (define-key hexl-mode-map "\C-j" 'hexl-self-insert-command) -- 2.39.5