[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
`hexl-mode' bug when hitting RET
From: |
John Paul Wallington |
Subject: |
`hexl-mode' bug when hitting RET |
Date: |
Sat, 01 Feb 2003 11:49:22 +0000 |
User-agent: |
Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.3.50 (i686-pc-linux-gnu) |
Currently, pressing RET in `hexl-mode' runs `newline' which isn't
good. I propose the following fix (and likewise for RC), which makes
it behave like Emacs 20.7, but perhaps it should be bound to
`hexl-next-line' or `ignore' instead. WDYT?
Index: hexl.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/hexl.el,v
retrieving revision 1.77
diff -u -r1.77 hexl.el
--- hexl.el 13 Jan 2003 09:49:54 -0000 1.77
+++ hexl.el 31 Jan 2003 01:26:37 -0000
@@ -865,7 +865,7 @@
;; because we need to convert them to unibyte characters before
;; 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)
- `hexl-mode' bug when hitting RET,
John Paul Wallington <=