From: John Paul Wallington Date: Sun, 2 Feb 2003 16:04:59 +0000 (+0000) Subject: (hexl-mode-map): Bind C-m to `hexl-self-insert-command'. X-Git-Tag: ttn-vms-21-2-B4~11376 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d9c8518d9aaeb2eeba76db0e98887ee027861c9d;p=emacs.git (hexl-mode-map): Bind C-m to `hexl-self-insert-command'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c61a543242f..4226ed987e9 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-02-01 Stephen Gildea * time-stamp.el: Update example date in preamble commentary. diff --git a/lisp/hexl.el b/lisp/hexl.el index 420e05b03fd..0844c697208 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -866,6 +866,7 @@ Customize the variable `hexl-follow-ascii' to disable this feature." ;; inserting them into the buffer. (define-key hexl-mode-map [remap self-insert-command] 'hexl-self-insert-command) + (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)