# HG changeset patch # User Kenichi Handa # Date 1211977192 0 # Node ID f472b6b1baa837ef6cc6d23b083c1114edd524e3 # Parent f6580a4c58da685309711e082fa077908d06a7d0 (Ffont_info): Don't call font_close_object. diff -r f6580a4c58da -r f472b6b1baa8 src/fontset.c --- a/src/fontset.c Wed May 28 11:47:01 2008 +0000 +++ b/src/fontset.c Wed May 28 12:19:52 2008 +0000 @@ -1678,7 +1678,12 @@ XVECTOR (info)->contents[5] = make_number (font->relative_compose); XVECTOR (info)->contents[6] = make_number (font->default_ascent); +#if 0 + /* As font_object is still in FONT_OBJLIST of the entity, we can't + close it now. Perhaps, we should manage font-objects + by `reference-count'. */ font_close_object (f, font_object); +#endif return info; }