shithub: freetype+ttf2subf

Download patch

ref: 9e69987aaada5f2eeccc4fe3a9890a2b10b874ea
parent: fda356b742da3b1c0e2bf039227fa324b97b9f8b
author: Werner Lemberg <[email protected]>
date: Tue Jul 17 15:54:25 EDT 2018

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

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2018-07-17  Werner Lemberg  <[email protected]>
+
+	* src/pcf/pcfread.c (pcf_get_encodings): Trace `defaultChar'.
+
 2018-07-16  Armin Hasitzka  <[email protected]>
 
 	* include/freetype/internal/ftcalc.h: Add macros for handling
--- a/src/pcf/pcfread.c
+++ b/src/pcf/pcfread.c
@@ -992,9 +992,11 @@
       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       ||