Fix PostScript output of multiple charts.
authorBen Pfaff <blp@gnu.org>
Sun, 14 May 2006 20:56:44 +0000 (20:56 +0000)
committerBen Pfaff <blp@gnu.org>
Sun, 14 May 2006 20:56:44 +0000 (20:56 +0000)
Thanks to John Darrington for reporting the bug.

src/output/ChangeLog
src/output/postscript.c

index 5a8cdc77a745c67e332367c0f71b5ef767bf8710..af13b4b443f80a8dda75bf60a9f49f5647317032 100644 (file)
@@ -1,3 +1,10 @@
+Sun May 14 13:54:58 2006  Ben Pfaff  <blp@gnu.org>
+
+       * postscript.c: (ps_chart_finalise) Fix format of %%EndDocument
+       comment, which screwed up gv's idea of where one page ended and
+       the next one began.  Thanks to John Darrington for pointing out
+       the bug.
+
 Sun Apr 16 11:48:25 2006  Ben Pfaff  <blp@gnu.org>
 
        Start reforming error message support.  In this phase, we get rid
index d2cff2c25e9f774b4a9c9d406b617de193059ee7..f212bb20084c639bf00fc2306c233dc501adf9af 100644 (file)
@@ -1145,7 +1145,7 @@ ps_chart_finalise (struct outp_driver *this UNUSED, struct chart *ch UNUSED)
     continue;
   fclose (ch->file);
 
-  fputs ("%%%%EndDocument\n"
+  fputs ("%%EndDocument\n"
          "end\n"
          "sp restore\n",
          x->file);