GNOME Bugzilla – Bug 395328
Map kATSDeletedGlyphcode to PANGO_GLYPH_EMPTY
Last modified: 2007-01-18 07:37:32 UTC
As discussed in https://bugs.freedesktop.org/show_bug.cgi?id=9530, we need to handle kATSDeletedGlyphcode. Will attach a patch that maps it to PANGO_GLYPH_EMPTY, which is already handled properly in pangocairo-atsui-font.c. Btw, do we need to add a component for the atsui backend?
Created attachment 80015 [details] [review] Handle deleted atsui glyph code
A simpler patch would be: - glyphs->glyphs[i].glyph = glyph; + glyphs->glyphs[i].glyph = G_UNLIKELY (glyph == kATSDeletedGlyphcode) ? PANGO_GLYPH_EMPTY : glyph; Is that ok? Feel free to commit to trunk and pango-1-14 branch, but if you do, please keep my ChangeLog style by copying the bug description from the first line of this bugzilla page (including the em-dash!). Thanks.
2007-01-17 Behdad Esfahbod <behdad@gnome.org> Bug 395328 – Map kATSDeletedGlyphcode to PANGO_GLYPH_EMPTY * modules/basic/basic-atsui.c (set_glyph): Handle kATSDeletedGlyphcode.
Thanks for commtting, I have been a bit busy the last couple of days.