From: handa Date: Thu, 6 Sep 2007 04:03:21 +0000 (+0000) Subject: (mfont__flt_run): Improve debug info printing. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=2240a193ead3411e97d1937bbe67328a5352886f;p=m17n%2Fm17n-lib.git (mfont__flt_run): Improve debug info printing. --- diff --git a/src/font-flt.c b/src/font-flt.c index e0668d8..3254446 100644 --- a/src/font-flt.c +++ b/src/font-flt.c @@ -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 (")"); }