]> git.eshelyaron.com Git - emacs.git/commitdiff
(hexl-mode-map): Bind C-m to `hexl-self-insert-command'.
authorJohn Paul Wallington <jpw@pobox.com>
Sun, 2 Feb 2003 16:04:59 +0000 (16:04 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Sun, 2 Feb 2003 16:04:59 +0000 (16:04 +0000)
lisp/ChangeLog
lisp/hexl.el

index c61a543242f7249b739f76a77994c26109f18b7b..4226ed987e9dab7f601d54fd23b6cb2edcb170be 100644 (file)
@@ -1,3 +1,7 @@
+2003-02-02  John Paul Wallington  <jpw@gnu.org>
+
+       * hexl.el (hexl-mode-map): Bind C-m to `hexl-self-insert-command'.
+
 2003-02-01  Stephen Gildea  <gildea@stop.mail-abuse.org>
 
        * time-stamp.el: Update example date in preamble commentary.
index 420e05b03fdd88c410afbe667a7ad9c52d82e783..0844c6972082b51ecc49d1455a550e7132e15824 100644 (file)
@@ -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)