summaryrefslogtreecommitdiff
path: root/lisp/hexl.el
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2003-02-02 16:04:59 +0000
committerJohn Paul Wallington <jpw@pobox.com>2003-02-02 16:04:59 +0000
commitd9c8518d9aaeb2eeba76db0e98887ee027861c9d (patch)
tree72a8a26b58c2a232ee92f257d042184f6c9d558d /lisp/hexl.el
parent3b7db26894cae539a84a2182fc75b1244e0932ed (diff)
(hexl-mode-map): Bind C-m to `hexl-self-insert-command'.
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r--lisp/hexl.el1
1 files changed, 1 insertions, 0 deletions
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)