(mfont__flt_run): Improve debug info printing.
authorhanda <handa>
Thu, 6 Sep 2007 04:03:21 +0000 (04:03 +0000)
committerhanda <handa>
Thu, 6 Sep 2007 04:03:21 +0000 (04:03 +0000)
src/font-flt.c

index e0668d8..3254446 100644 (file)
@@ -1404,7 +1404,11 @@ mfont__flt_run (MGlyphString *gstring, int from, int to, MRealizedFace *rface)
     {
       MDEBUG_PRINT ("\n [FLT]   (SOURCE");
       for (i = from; i < to; i++)
-       MDEBUG_PRINT1 (" %04X", MGLYPH (i)->c);
+       {
+         if (i > from && (i - from) % 8 == 0)
+           MDEBUG_PRINT ("\n [FLT]          ");
+         MDEBUG_PRINT1 (" %04X", MGLYPH (i)->c);
+       }
       MDEBUG_PRINT (")");
     }