1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(hexl-mode-map): Bind C-m to `hexl-self-insert-command'.

This commit is contained in:
John Paul Wallington 2003-02-02 16:04:59 +00:00
parent 3b7db26894
commit d9c8518d9a
2 changed files with 5 additions and 0 deletions

View 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-02-01 Stephen Gildea <gildea@stop.mail-abuse.org>
* time-stamp.el: Update example date in preamble commentary.

View File

@ -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)