Whitespace

This commit is contained in:
Behdad Esfahbod 2021-07-12 16:52:31 -06:00
parent 5f5a8b4dd7
commit 1cb0ca1f2c
2 changed files with 5 additions and 2 deletions

View File

@ -1922,7 +1922,8 @@ inline void hb_ot_map_t::apply (const Proxy &proxy,
OT::hb_ot_apply_context_t c (table_index, font, buffer); OT::hb_ot_apply_context_t c (table_index, font, buffer);
c.set_recurse_func (Proxy::Lookup::apply_recurse_func); c.set_recurse_func (Proxy::Lookup::apply_recurse_func);
for (unsigned int stage_index = 0; stage_index < stages[table_index].length; stage_index++) { for (unsigned int stage_index = 0; stage_index < stages[table_index].length; stage_index++)
{
const stage_map_t *stage = &stages[table_index][stage_index]; const stage_map_t *stage = &stages[table_index][stage_index];
for (; i < stage->last_lookup; i++) for (; i < stage->last_lookup; i++)
{ {

View File

@ -551,6 +551,7 @@ hb_insert_dotted_circle (hb_buffer_t *buffer, hb_font_t *font)
info.cluster = buffer->cur().cluster; info.cluster = buffer->cur().cluster;
info.mask = buffer->cur().mask; info.mask = buffer->cur().mask;
(void) buffer->output_info (info); (void) buffer->output_info (info);
buffer->swap_buffers (); buffer->swap_buffers ();
} }
@ -1168,7 +1169,8 @@ hb_ot_shape_internal (hb_ot_shape_context_t *c)
hb_ensure_native_direction (c->buffer); hb_ensure_native_direction (c->buffer);
if (c->plan->shaper->preprocess_text && if (c->plan->shaper->preprocess_text &&
c->buffer->message(c->font, "start preprocess-text")) { c->buffer->message(c->font, "start preprocess-text"))
{
c->plan->shaper->preprocess_text (c->plan, c->buffer, c->font); c->plan->shaper->preprocess_text (c->plan, c->buffer, c->font);
(void) c->buffer->message(c->font, "end preprocess-text"); (void) c->buffer->message(c->font, "end preprocess-text");
} }