aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2002-03-01 01:58:36 +0000
committerKenichi Handa2002-03-01 01:58:36 +0000
commitcd2086e4c3affe044c71034430c3be59aefebc04 (patch)
treef39531673d25ffc98f9173738f3cd06501b4323b
parent0f8c4c4fede7393e9f0c24514845738837ca6fca (diff)
downloademacs-cd2086e4c3affe044c71034430c3be59aefebc04.tar.gz
emacs-cd2086e4c3affe044c71034430c3be59aefebc04.zip
Don't bind multibyte characters to self-insert-command here. It's
done in mule-conf.el
-rw-r--r--lisp/bindings.el6
1 files changed, 0 insertions, 6 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 4135cf1c187..4ddf4d8183b 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -556,12 +556,6 @@ language you are using."
556;; that we will not need to keep permanently. 556;; that we will not need to keep permanently.
557(garbage-collect) 557(garbage-collect)
558 558
559;; Make all multibyte characters self-insert.
560(let ((l (generic-character-list))
561 (table (nth 1 global-map)))
562 (while l
563 (set-char-table-default table (car l) 'self-insert-command)
564 (setq l (cdr l))))
565 559
566(setq help-event-list '(help f1)) 560(setq help-event-list '(help f1))
567 561