changeset 73050:9e002a3232ec

Fix setting self-insert-command for multibyte characters in global-map.
author Kenichi Handa <handa@m17n.org>
date Fri, 22 Sep 2006 12:55:25 +0000
parents 5fe222b4d692
children 09d278e92c70
files lisp/bindings.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/bindings.el	Fri Sep 22 12:54:38 2006 +0000
+++ b/lisp/bindings.el	Fri Sep 22 12:55:25 2006 +0000
@@ -604,7 +604,7 @@
 (let ((l (generic-character-list))
       (table (nth 1 global-map)))
   (while l
-    (set-char-table-default table (car l) 'self-insert-command)
+    (aset table (car l) 'self-insert-command)
     (setq l (cdr l))))
 
 (setq help-event-list '(help f1))