# HG changeset patch # User John Paul Wallington # Date 1044201857 0 # Node ID 8f5cfbb414335f4bbec238447df3a72749dd2e55 # Parent ca56eac8c6582e37b0ec6adb9d8b238cfada27d6 (hexl-mode-map): Bind C-m to `hexl-self-insert-command'. diff -r ca56eac8c658 -r 8f5cfbb41433 lisp/hexl.el --- a/lisp/hexl.el Sun Feb 02 00:19:39 2003 +0000 +++ b/lisp/hexl.el Sun Feb 02 16:04:17 2003 +0000 @@ -866,6 +866,7 @@ ;; 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)