fixed Type1 kerning flag setting when reading AFM file

This commit is contained in:
David Turner 2001-08-30 06:56:03 +00:00
parent 9f1c1c718f
commit f09ddd430f
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-08-30 Anthony Feik <afeick@hotmail.com>
* src/type1/t1afm.c (T1_Read_Afm): now correctly sets the flag
FT_FACE_FLAG_KERNING when appropriate for Type1 + AFM files..
2001-08-25 Werner Lemberg <wl@gnu.org>
* src/sfnt/ttload.c (TT_Load_CMap): Fix frame length of

View File

@ -202,6 +202,8 @@
/* save in face object */
((T1_Face)t1_face)->afm_data = afm;
t1_face->face_flags |= FT_FACE_FLAG_KERNING;
for ( p = start; p < limit - 3; p++ )
{
if ( IS_KERN_PAIR( p ) )