diff --git a/ChangeLog b/ChangeLog index da80b1391..2ff61822d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2018-07-17 Werner Lemberg + + * src/pcf/pcfread.c (pcf_get_encodings): Trace `defaultChar'. + 2018-07-16 Armin Hasitzka * include/freetype/internal/ftcalc.h: Add macros for handling diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c index c0e2f4934..ffea8209e 100644 --- a/src/pcf/pcfread.c +++ b/src/pcf/pcfread.c @@ -992,9 +992,11 @@ THE SOFTWARE. return FT_THROW( Invalid_File_Format ); FT_TRACE4(( " firstCol 0x%X, lastCol 0x%X\n" - " firstRow 0x%X, lastRow 0x%X\n", + " firstRow 0x%X, lastRow 0x%X\n" + " defaultChar 0x%X\n", firstCol, lastCol, - firstRow, lastRow )); + firstRow, lastRow, + face->defaultChar )); /* sanity checks; we limit numbers of rows and columns to 256 */ if ( firstCol < 0 ||