# HG changeset patch # User Kenichi Handa # Date 1074134595 0 # Node ID 1c9ca166e8723ac74343821fe0bdac27e2175373 # Parent 412518f2feab21c460e201fa475d209509217ee2 (syms_of_composite): Fix comment. diff -r 412518f2feab -r 1c9ca166e872 src/composite.c --- a/src/composite.c Thu Jan 15 02:16:11 2004 +0000 +++ b/src/composite.c Thu Jan 15 02:43:15 2004 +0000 @@ -755,8 +755,11 @@ args[0] = QCtest; args[1] = Qequal; args[2] = QCweakness; - /* Fixme: It seems that a weak hash table leads to segfault in GC, - but I have not yet found why. -- handa@m17n.org */ + /* We used to make the hash table weak so that unreferenced + compostions can be garbage-collected. But, usually once + created compositions are repeatedly used in an Emacs session, + and thus it's not worth to save memory in such a way. So, we + make the table not weak. */ args[3] = Qnil; args[4] = QCsize; args[5] = make_number (311);