Fix lookahead matching. Oops!

This commit is contained in:
Behdad Esfahbod 2010-05-14 20:09:48 -04:00
parent 3109375b84
commit cc6ae7ff91
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ static inline bool match_lookahead (hb_apply_context_t *c,
for (i = 0, j = c->buffer->in_pos + offset; i < count; i++, j++) for (i = 0, j = c->buffer->in_pos + offset; i < count; i++, j++)
{ {
while (_hb_ot_layout_skip_mark (c->layout->face, OUT_INFO (j), c->lookup_flag, NULL)) while (_hb_ot_layout_skip_mark (c->layout->face, IN_INFO (j), c->lookup_flag, NULL))
{ {
if (unlikely (j + count - i == end)) if (unlikely (j + count - i == end))
return false; return false;