1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-08 20:58:58 +00:00

(hexl-mode-map): Don't quote remapped command names.

This commit is contained in:
Kim F. Storm 2003-01-13 09:49:54 +00:00
parent b88bfa623b
commit 340c4d8542

View File

@ -864,7 +864,7 @@ Customize the variable `hexl-follow-ascii' to disable this feature."
;; Make all self-inserting keys go through hexl-self-insert-command,
;; 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 [remap self-insert-command] 'hexl-self-insert-command)
(define-key hexl-mode-map [left] 'hexl-backward-char)
(define-key hexl-mode-map [right] 'hexl-forward-char)