# HG changeset patch # User Kenichi Handa # Date 1070330106 0 # Node ID 13df47fbaa54245f1f0cb1459c9010ca1b320794 # Parent 7b299a7f9bc8e11d2be60765c97f36ed30e88c04 (syms_of_composite): Don't make the compostion hash table week. diff -r 7b299a7f9bc8 -r 13df47fbaa54 src/composite.c --- a/src/composite.c Tue Dec 02 01:47:37 2003 +0000 +++ b/src/composite.c Tue Dec 02 01:55:06 2003 +0000 @@ -755,7 +755,9 @@ 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);