]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_composite): Don't make the compostion hash table week.
authorKenichi Handa <handa@m17n.org>
Mon, 1 Dec 2003 12:33:13 +0000 (12:33 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 1 Dec 2003 12:33:13 +0000 (12:33 +0000)
src/composite.c

index ef4318f54428e3dfe729500bdcaf4ecc06d2c6b5..b4e931c6a20883ed26effba5bec19a612cb87158 100644 (file)
@@ -843,7 +843,9 @@ syms_of_composite ()
     args[0] = QCtest;
     args[1] = Qequal;
     args[2] = QCweakness;
-    args[3] = Qt;
+    /* Fixme: It seems that a weak hash table leads to segfault in GC,
+       but I have not yet found why.  -- handa@m17n.org */
+    args[3] = Qnil;
     args[4] = QCsize;
     args[5] = make_number (311);
     composition_hash_table = Fmake_hash_table (6, args);