diff options
author | John Paul Wallington <jpw@pobox.com> | 2003-02-02 16:04:59 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2003-02-02 16:04:59 +0000 |
commit | d9c8518d9aaeb2eeba76db0e98887ee027861c9d (patch) | |
tree | 72a8a26b58c2a232ee92f257d042184f6c9d558d /lisp/hexl.el | |
parent | 3b7db26894cae539a84a2182fc75b1244e0932ed (diff) | |
download | emacs-d9c8518d9aaeb2eeba76db0e98887ee027861c9d.tar.gz |
(hexl-mode-map): Bind C-m to `hexl-self-insert-command'.
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r-- | lisp/hexl.el | 1 |
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) |