[gs-cvs] rev 8418 - trunk/gs/src
lpd at ghostscript.com
lpd at ghostscript.com
Thu Nov 29 22:43:12 PST 2007
Author: lpd
Date: 2007-11-29 22:43:12 -0800 (Thu, 29 Nov 2007)
New Revision: 8418
Modified:
trunk/gs/src/igcref.c
Log:
Fixes bug: -Z89 produced slightly mangled output (-Z9 output inserted in the
middle of a line of -Z8 output).
Modified: trunk/gs/src/igcref.c
===================================================================
--- trunk/gs/src/igcref.c 2007-11-30 00:45:53 UTC (rev 8417)
+++ trunk/gs/src/igcref.c 2007-11-30 06:43:12 UTC (rev 8418)
@@ -411,7 +411,7 @@
/* The following assignment is logically unnecessary; */
/* we do it only for convenience in debugging. */
pref = (ref *) rp;
- if_debug3('8', " [8]relocating %s %d ref at 0x%lx",
+ if_debug3('8', " [8]relocating %s %d ref at 0x%lx\n",
(r_has_attr(pref, l_mark) ? "marked" : "unmarked"),
r_btype(pref), (ulong) pref);
if ((r_has_attr(pref, l_mark) || do_all) &&
@@ -539,10 +539,10 @@
default:
goto no_reloc; /* don't print trace message */
}
- if_debug2('8', ", 0x%lx => 0x%lx", (ulong)before, (ulong)after);
+ if_debug2('8', " [8]relocated 0x%lx => 0x%lx\n",
+ (ulong)before, (ulong)after);
}
no_reloc:
- if_debug0('8', "\n");
rp += packed_per_ref;
}
}
More information about the gs-cvs
mailing list