From: Kenichi Handa Date: Thu, 15 Jan 2004 02:43:15 +0000 (+0000) Subject: (syms_of_composite): Fix comment. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1642 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dc47eccc14cbe57e54a94f1b6720d2058bdafb1c;p=emacs.git (syms_of_composite): Fix comment. --- diff --git a/src/composite.c b/src/composite.c index a81ac3182b9..ea85e2fa506 100644 --- a/src/composite.c +++ b/src/composite.c @@ -755,8 +755,11 @@ syms_of_composite () 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);