From 1bd573a475e6d55eccae22d082e35ec8c5a7c71c Mon Sep 17 00:00:00 2001 From: John Paul Wallington Date: Sun, 2 Feb 2003 16:14:05 +0000 Subject: [PATCH] (hexl-mode-map): Bind C-m to `hexl-self-insert-command'. --- lisp/ChangeLog | 4 ++++ lisp/hexl.el | 1 + 2 files changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 41e64e8e993..bc4c913b022 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2003-02-02 John Paul Wallington + + * hexl.el (hexl-mode-map): Bind C-m to `hexl-self-insert-command'. + 2003-01-29 Juanma Barranquero * composite.el (decompose-composite-char): Fix docstring. diff --git a/lisp/hexl.el b/lisp/hexl.el index 145c55f6c62..a499733060f 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -873,6 +873,7 @@ Customize the variable `hexl-follow-ascii' to disable this feature." (substitute-key-definition 'self-insert-command 'hexl-self-insert-command hexl-mode-map (current-global-map)) + (define-key hexl-mode-map "\C-m" 'hexl-self-insert-command) (define-key hexl-mode-map [left] 'hexl-backward-char) (define-key hexl-mode-map [right] 'hexl-forward-char) (define-key hexl-mode-map [up] 'hexl-previous-line) -- 2.39.2