From b6e592e09d118b38885892b31cc02ef87c58b019 Mon Sep 17 00:00:00 2001 From: handa Date: Fri, 17 Aug 2007 05:43:24 +0000 Subject: [PATCH] (lookup_gpos): Fix handling of IGNORED_GLYPH. --- src/otfdrive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/otfdrive.c b/src/otfdrive.c index a822704..73ed66f 100644 --- a/src/otfdrive.c +++ b/src/otfdrive.c @@ -815,7 +815,7 @@ lookup_gpos (OTF_LookupList *lookup_list, unsigned lookup_list_index, OTF_Glyph *nextg; for (next_gidx = gidx + 1, nextg = gstring->glyphs + next_gidx; - next_gidx < gstring->used && ! IGNORED_GLYPH (nextg, flag); + next_gidx < gstring->used && IGNORED_GLYPH (nextg, flag); next_gidx++, nextg++); if (next_gidx >= gstring->used -- 1.7.10.4