Minor
This commit is contained in:
parent
fe6788bc57
commit
595d2b96c3
|
@ -1285,6 +1285,7 @@ insert_dotted_circles (const hb_ot_shape_plan_t *plan HB_UNUSED,
|
||||||
info.cluster = buffer->cur().cluster;
|
info.cluster = buffer->cur().cluster;
|
||||||
info.mask = buffer->cur().mask;
|
info.mask = buffer->cur().mask;
|
||||||
info.syllable() = buffer->cur().syllable();
|
info.syllable() = buffer->cur().syllable();
|
||||||
|
/* TODO Set glyph_props? */
|
||||||
|
|
||||||
/* Insert dottedcircle after possible Repha. */
|
/* Insert dottedcircle after possible Repha. */
|
||||||
while (buffer->idx < buffer->len &&
|
while (buffer->idx < buffer->len &&
|
||||||
|
|
|
@ -243,7 +243,7 @@ hb_insert_dotted_circle (hb_buffer_t *buffer, hb_font_t *font)
|
||||||
if (!font->has_glyph (0x25CCu))
|
if (!font->has_glyph (0x25CCu))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
hb_glyph_info_t dottedcircle;
|
hb_glyph_info_t dottedcircle = {0};
|
||||||
dottedcircle.codepoint = 0x25CCu;
|
dottedcircle.codepoint = 0x25CCu;
|
||||||
_hb_glyph_info_set_unicode_props (&dottedcircle, buffer->unicode);
|
_hb_glyph_info_set_unicode_props (&dottedcircle, buffer->unicode);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue