From 2240a193ead3411e97d1937bbe67328a5352886f Mon Sep 17 00:00:00 2001 From: handa Date: Thu, 6 Sep 2007 04:03:21 +0000 Subject: [PATCH] (mfont__flt_run): Improve debug info printing. --- src/font-flt.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 (")"); } -- 1.7.10.4