From 1ace9906b38aa264daa9c8f066d6993a40016e69 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 1 Dec 2003 12:33:13 +0000 Subject: [PATCH] (syms_of_composite): Don't make the compostion hash table week. --- src/composite.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/composite.c b/src/composite.c index ef4318f5442..b4e931c6a20 100644 --- a/src/composite.c +++ b/src/composite.c @@ -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); -- 2.39.2