diff options
| author | Kim F. Storm | 2003-01-13 09:49:54 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-01-13 09:49:54 +0000 |
| commit | 340c4d85424f6930d96865c29046de3c0db7a552 (patch) | |
| tree | 8bf367566d1ff8e3a6821ca2d5dc448fdca2099d | |
| parent | b88bfa623b684cec1141ee318c865dced32a75d8 (diff) | |
| download | emacs-340c4d85424f6930d96865c29046de3c0db7a552.tar.gz emacs-340c4d85424f6930d96865c29046de3c0db7a552.zip | |
(hexl-mode-map): Don't quote remapped command names.
| -rw-r--r-- | lisp/hexl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el index c910ebf9759..420e05b03fd 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el | |||
| @@ -864,7 +864,7 @@ Customize the variable `hexl-follow-ascii' to disable this feature." | |||
| 864 | ;; Make all self-inserting keys go through hexl-self-insert-command, | 864 | ;; Make all self-inserting keys go through hexl-self-insert-command, |
| 865 | ;; because we need to convert them to unibyte characters before | 865 | ;; because we need to convert them to unibyte characters before |
| 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 [left] 'hexl-backward-char) | 869 | (define-key hexl-mode-map [left] 'hexl-backward-char) |
| 870 | (define-key hexl-mode-map [right] 'hexl-forward-char) | 870 | (define-key hexl-mode-map [right] 'hexl-forward-char) |