# HG changeset patch # User Kim F. Storm # Date 1042451394 0 # Node ID 8552e8fce5c87aaa6f4e2b7233ab63ba733c8797 # Parent 2e85a81f1b1e5bf6bc46fd3bf4abaa54597b910b (hexl-mode-map): Don't quote remapped command names. diff -r 2e85a81f1b1e -r 8552e8fce5c8 lisp/hexl.el --- a/lisp/hexl.el Mon Jan 13 09:49:10 2003 +0000 +++ b/lisp/hexl.el Mon Jan 13 09:49:54 2003 +0000 @@ -864,7 +864,7 @@ ;; 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)