* src/truetype/ttgload.c (TT_Hint_Glyph): More mostly cosmetic update.

This is a follow-up to commit 49c74ac02, which creates a new local variable
"exec = loader->exec", and shortening a lot of "loader->exec".  This commit
does two more such changes missed in that first commit.

Signed-off-by: Hin-Tak Leung <htl10@users.sourceforge.net>
This commit is contained in:
Hin-Tak Leung 2023-07-07 19:24:48 +01:00 committed by Werner Lemberg
parent 355e919746
commit dec2743e6a
1 changed files with 2 additions and 2 deletions

View File

@ -820,7 +820,7 @@
FT_ARRAY_COPY( zone->org, zone->cur, zone->n_points );
/* Reset graphics state. */
loader->exec->GS = loader->size->GS;
exec->GS = loader->size->GS;
/* XXX: UNDOCUMENTED! Hinting instructions of a composite glyph */
/* completely refer to the (already) hinted subglyphs. */
@ -860,7 +860,7 @@
exec->is_composite = is_composite;
exec->pts = *zone;
error = TT_Run_Context( loader->exec );
error = TT_Run_Context( exec );
if ( error && exec->pedantic_hinting )
return error;