# HG changeset patch # User Kenichi Handa # Date 1070281993 0 # Node ID 94ae4d74b7e0e138be33ffc0677ef73131b63498 # Parent 39fbad33ec6aeb001c5a679c34a50b5d0d27fbbf (syms_of_composite): Don't make the compostion hash table week. diff -r 39fbad33ec6a -r 94ae4d74b7e0 src/composite.c --- a/src/composite.c Mon Dec 01 05:27:15 2003 +0000 +++ b/src/composite.c Mon Dec 01 12:33:13 2003 +0000 @@ -843,7 +843,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);