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

index 683330731ed602973e8b9d2fc1f0ea1e0c0ec99a..a81ac3182b9470f02c3a7005b4d2364302aea36e 100644 (file)
@@ -755,7 +755,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);