* src/pcf/pcfread.c (pcf_get_encodings): Trace `defaultChar'.
diff --git a/ChangeLog b/ChangeLog
index da80b13..2ff6182 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c
index c0e2f49..ffea820 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 ||