aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2003-01-13 09:49:54 +0000
committerKim F. Storm <[email protected]>2003-01-13 09:49:54 +0000
commit340c4d85424f6930d96865c29046de3c0db7a552 (patch)
tree8bf367566d1ff8e3a6821ca2d5dc448fdca2099d
parentb88bfa623b684cec1141ee318c865dced32a75d8 (diff)
(hexl-mode-map): Don't quote remapped command names.
-rw-r--r--lisp/hexl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el
index c910ebf975..420e05b03f 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -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)