* src/type1/t1afm.c (T1_Read_PFM): Set charmaps directly.

As with the previous commit, we can avoid the validation checks
of `FT_Set_Charmap` and set it directly when choosing from the
available list.
check-deprecated-warning-for-macosx
Alexei Podtelezhnikov 2 years ago
parent 8faf57dd17
commit 1b6dce84f9
  1. 10
      src/type1/t1afm.c

@ -178,7 +178,6 @@
/* temporarily. If we find no PostScript charmap, then just use */
/* the default and hope it is the right one. */
oldcharmap = t1_face->charmap;
charmap = NULL;
for ( n = 0; n < t1_face->num_charmaps; n++ )
{
@ -186,9 +185,7 @@
/* check against PostScript pseudo platform */
if ( charmap->platform_id == 7 )
{
error = FT_Set_Charmap( t1_face, charmap );
if ( error )
goto Exit;
t1_face->charmap = charmap;
break;
}
}
@ -209,10 +206,7 @@
kp++;
}
if ( oldcharmap )
error = FT_Set_Charmap( t1_face, oldcharmap );
if ( error )
goto Exit;
t1_face->charmap = oldcharmap;
/* now, sort the kern pairs according to their glyph indices */
ft_qsort( fi->KernPairs, fi->NumKernPair, sizeof ( AFM_KernPairRec ),

Loading…
Cancel
Save