mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-07 21:38:02 +02:00
* 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:
parent
a081e61ed5
commit
bd23b2d9c7
2 changed files with 6 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -791,7 +791,7 @@
|
|||
}
|
||||
|
||||
/* Chou blanc! */
|
||||
return FT_Err_Invalid_Argument;
|
||||
return FT_Err_Invalid_CharMap_Handle;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue