* src/base/ftobjs.c (find_unicode_charmap): fixed the error code

returned when the font doesn't contain a Unicode charmap. This
        allows FT2 to load "symbol.ttf" and a few others correctly since
        the last release
This commit is contained in:
David Turner 2003-01-08 09:28:34 +00:00
parent a081e61ed5
commit bd23b2d9c7
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,10 @@
2003-01-08 David Turner <david@freetype.org>
* src/base/ftobjs.c (find_unicode_charmap): fixed the error code
returned when the font doesn't contain a Unicode charmap. This
allows FT2 to load "symbol.ttf" and a few others correctly since
the last release
* Jamrules, Jamfile, Jamfile.in, src/*/Jamfile: small changes to
support the compilation of FreeType 2 as part of larger projects with
their own configuration options (only with Jam)

View File

@ -791,7 +791,7 @@
}
/* Chou blanc! */
return FT_Err_Invalid_Argument;
return FT_Err_Invalid_CharMap_Handle;
}