diff --git a/ChangeLog b/ChangeLog index 1451ca121..a5ba6f9da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -91,14 +91,16 @@ 2002-09-25 David Turner - * src/autohint/ahtypes.h: Disabling metrics hinting in the - auto-hinter. this produces much better anti-aliased text. + * src/autohint/ahtypes.h (AH_HINT_METRICS): Disabling metrics + hinting in the auto-hinter. This produces much better anti-aliased + text. * docs/CHANGES: Updating the changes documentation. 2002-09-25 Anthony Fok - * src/sfnt/ttcmap0.c: Added support for opens___.ttf (it contains a + * src/sfnt/ttcmap0.c (tt_cmap4_validate, tt_cmap4_char_index, + tt_cmap4_char_next): Added support for opens___.ttf (it contains a charmap that uses offset=0xFFFFU instead of 0x0000 to indicate a missing glyph). diff --git a/docs/CHANGES b/docs/CHANGES index 52d5498ca..39221ed1e 100644 --- a/docs/CHANGES +++ b/docs/CHANGES @@ -73,15 +73,15 @@ LATEST CHANGES BETWEEN 2.1.3 and 2.1.2 displays (under Win32 and X11) - - The cache API has been slightly modified (it's still a beta after all!!): + - The cache API has been slightly modified (it's still a beta!): - - the type FTC_ImageDesc has been removed, it is now replaced by - FTC_ImageTypeRec. Note that one of its fields is a 'load_flag' - parameter for FT_Load_Glyph + - The type FTC_ImageDesc has been removed; it is now replaced by + FTC_ImageTypeRec. Note that one of its fields is a `load_flag' + parameter for FT_Load_Glyph. - - the field "num_grays" of FT_SBitRec has been changed to "max_grays" - in order to fit within a single byte. Its maximum value is thus 255 - (instead of 256 as previously) + - The field "num_grays" of FT_SBitRec has been changed to "max_grays" + in order to fit within a single byte. Its maximum value is thus 255 + (instead of 256 as previously). III. MISCELLANEOUS diff --git a/src/sfnt/ttcmap0.c b/src/sfnt/ttcmap0.c index 30ef8b777..3b9e6fb1e 100644 --- a/src/sfnt/ttcmap0.c +++ b/src/sfnt/ttcmap0.c @@ -919,7 +919,7 @@ } else if ( offset == 0xFFFFU ) { - /* an offset of 0xFFFF means an empty glyph in certain fonts !! */ + /* an offset of 0xFFFF means an empty glyph in certain fonts! */ code = end; break; }