projects
/
m17n
/
m17n-lib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e45f3c
)
(mfont__flt_run): Improve debug info printing.
author
handa
<handa>
Thu, 6 Sep 2007 04:03:21 +0000
(
04:03
+0000)
committer
handa
<handa>
Thu, 6 Sep 2007 04:03:21 +0000
(
04:03
+0000)
src/font-flt.c
patch
|
blob
|
history
diff --git
a/src/font-flt.c
b/src/font-flt.c
index
e0668d8
..
3254446
100644
(file)
--- 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 (")");
}