aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2003-02-02 16:04:59 +0000
committerJohn Paul Wallington2003-02-02 16:04:59 +0000
commitd9c8518d9aaeb2eeba76db0e98887ee027861c9d (patch)
tree72a8a26b58c2a232ee92f257d042184f6c9d558d
parent3b7db26894cae539a84a2182fc75b1244e0932ed (diff)
downloademacs-d9c8518d9aaeb2eeba76db0e98887ee027861c9d.tar.gz
emacs-d9c8518d9aaeb2eeba76db0e98887ee027861c9d.zip
(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 c61a543242f..4226ed987e9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12003-02-02 John Paul Wallington <jpw@gnu.org>
2
3 * hexl.el (hexl-mode-map): Bind C-m to `hexl-self-insert-command'.
4
12003-02-01 Stephen Gildea <gildea@stop.mail-abuse.org> 52003-02-01 Stephen Gildea <gildea@stop.mail-abuse.org>
2 6
3 * time-stamp.el: Update example date in preamble commentary. 7 * time-stamp.el: Update example date in preamble commentary.
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."
866 ;; inserting them into the buffer. 866 ;; inserting them into the buffer.
867 (define-key hexl-mode-map [remap self-insert-command] 'hexl-self-insert-command) 867 (define-key hexl-mode-map [remap self-insert-command] 'hexl-self-insert-command)
868 868
869 (define-key hexl-mode-map "\C-m" 'hexl-self-insert-command)
869 (define-key hexl-mode-map [left] 'hexl-backward-char) 870 (define-key hexl-mode-map [left] 'hexl-backward-char)
870 (define-key hexl-mode-map [right] 'hexl-forward-char) 871 (define-key hexl-mode-map [right] 'hexl-forward-char)
871 (define-key hexl-mode-map [up] 'hexl-previous-line) 872 (define-key hexl-mode-map [up] 'hexl-previous-line)