Mercurial > emacs
diff src/composite.c @ 53221:94ae4d74b7e0
(syms_of_composite): Don't make the compostion hash table week.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Mon, 01 Dec 2003 12:33:13 +0000 |
| parents | 695cf19ef79e |
| children | 0c88991a93ee |
line wrap: on
line diff
--- 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);
