* src/pcf/pcfread.c (pcf_get_encodings): Trace `defaultChar'.

This commit is contained in:
Werner Lemberg 2018-07-17 19:54:25 +02:00
parent fda356b742
commit 9e69987aaa
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2018-07-17 Werner Lemberg <wl@gnu.org>
* src/pcf/pcfread.c (pcf_get_encodings): Trace `defaultChar'.
2018-07-16 Armin Hasitzka <prince.cherusker@gmail.com>
* include/freetype/internal/ftcalc.h: Add macros for handling

View File

@ -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 ||