]> 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:14:05 +0000 (16:14 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Sun, 2 Feb 2003 16:14:05 +0000 (16:14 +0000)
lisp/ChangeLog
lisp/hexl.el

index 41e64e8e9935dcdd632ad41ae08ffadf07f5c121..bc4c913b0224f232a9308539e447417368f8766c 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-01-29  Juanma Barranquero  <lektu@terra.es>
 
        * composite.el (decompose-composite-char): Fix docstring.
index 145c55f6c62252450fee28b9067ded949e8aaf9b..a499733060f723742d9a482767aa7855cdc7af80 100644 (file)
@@ -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)