From: Kenichi Handa Date: Tue, 2 Dec 2003 01:55:06 +0000 (+0000) Subject: (syms_of_composite): Don't make the compostion hash table week. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1677 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6a83ee8a4aa9f5dedb955e8d4acf838e5626ed5e;p=emacs.git (syms_of_composite): Don't make the compostion hash table week. --- diff --git a/src/composite.c b/src/composite.c index 683330731ed..a81ac3182b9 100644 --- a/src/composite.c +++ b/src/composite.c @@ -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);