summaryrefslogtreecommitdiff
path: root/lisp/hexl.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-05-28 04:11:29 +0000
committerRichard M. Stallman <rms@gnu.org>1994-05-28 04:11:29 +0000
commit8ea4d5a0694ed96ed2b09d69f4ee56f889f6bdf6 (patch)
tree9562e3334ad9e7775a19379d042cd499038f4da4 /lisp/hexl.el
parenta72e2ad8c55d274f860a26c3baa7a2d60d0bf0bc (diff)
downloademacs-8ea4d5a0694ed96ed2b09d69f4ee56f889f6bdf6.tar.gz
(hexl-mode-map): Call define-key properly for help-char.
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r--lisp/hexl.el2
1 files changed, 1 insertions, 1 deletions
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)