summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2003-02-02 16:14:05 +0000
committerJohn Paul Wallington <jpw@pobox.com>2003-02-02 16:14:05 +0000
commit1bd573a475e6d55eccae22d082e35ec8c5a7c71c (patch)
tree52072c2dcaeaaac76752f63343564eaaf32a70dc
parent12770aefc82be37a73c017094d8c9c6af1b765f7 (diff)
downloademacs-1bd573a475e6d55eccae22d082e35ec8c5a7c71c.tar.gz
(hexl-mode-map): Bind C-m to `hexl-self-insert-command'.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/hexl.el1
2 files changed, 5 insertions, 0 deletions
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 <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.
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)