changeset 89671:13df47fbaa54

(syms_of_composite): Don't make the compostion hash table week.
author Kenichi Handa <handa@m17n.org>
date Tue, 02 Dec 2003 01:55:06 +0000
parents 7b299a7f9bc8
children 3b65414d605d
files src/composite.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);