Move variables to narrower scope and indent
This commit is contained in:
parent
894e5675c8
commit
d7f5332410
|
@ -2111,11 +2111,8 @@ FcFreeTypeCheckGlyph (FT_Face face,
|
|||
FcCharSet *
|
||||
FcFreeTypeCharSetAndSpacing (FT_Face face, FcBlanks *blanks FC_UNUSED, int *spacing)
|
||||
{
|
||||
FcChar32 page, off, ucs4;
|
||||
FcCharSet *fcs;
|
||||
FcCharLeaf *leaf;
|
||||
int o;
|
||||
FT_UInt glyph;
|
||||
FT_Pos advance, advance_one = 0, advance_two = 0;
|
||||
FcBool has_advance = FcFalse, fixed_advance = FcTrue, dual_advance = FcFalse;
|
||||
|
||||
|
@ -2147,10 +2144,13 @@ FcFreeTypeCharSetAndSpacing (FT_Face face, FcBlanks *blanks FC_UNUSED, int *spac
|
|||
#endif
|
||||
for (o = 0; o < NUM_DECODE; o++)
|
||||
{
|
||||
FcChar32 page, off, ucs4;
|
||||
FcCharLeaf *leaf;
|
||||
FT_UInt glyph;
|
||||
|
||||
if (FT_Select_Charmap (face, fcFontEncodings[o]) != 0)
|
||||
continue;
|
||||
|
||||
{
|
||||
page = ~0;
|
||||
leaf = NULL;
|
||||
ucs4 = FT_Get_First_Char (face, &glyph);
|
||||
|
@ -2220,8 +2220,6 @@ FcFreeTypeCharSetAndSpacing (FT_Face face, FcBlanks *blanks FC_UNUSED, int *spac
|
|||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
if (fixed_advance)
|
||||
|
|
Loading…
Reference in New Issue