]> granicus.if.org Git - graphviz/commitdiff
fix -Tps to work as before
authorellson <devnull@localhost>
Mon, 24 Jan 2005 21:58:23 +0000 (21:58 +0000)
committerellson <devnull@localhost>
Mon, 24 Jan 2005 21:58:23 +0000 (21:58 +0000)
lib/common/emit.c
lib/common/output.c

index afcdbc875d2d7a9c15b8900066c1b648da8c667f..2974c0c415d07140f397a8df430dfba91aae90a7 100644 (file)
@@ -729,6 +729,8 @@ void emit_init(GVC_t * gvc, graph_t * g)
 
     setup_layering(gvc, g);
 
+    setup_pagination(gvc, g);
+
     gvrender_begin_job(gvc, Lib, Pages, X, Y, Z, x, y, GD_drawing(g)->dpi);
 }
 
@@ -747,9 +749,6 @@ void emit_graph(GVC_t * gvc, graph_t * g, int flags)
     char *str, *colors;
     char *s, *url = NULL, *tooltip = NULL, *target = NULL;
 
-    /* FIXME - some of setup_pagination should be in emit_init() */
-    setup_pagination(gvc, g);
-
 #if 0
 /* FIXME - apparently zoom is not set yet */
     gvc->clip.UR.x = ROUND(gvc->focus.x + (gvc->width+1) / (gvc->zoom * 2.));
index a7b3df6b419893d152d9b6e85c098fd95a15c8c3..d248364a9b0d1ccd329ffceaf6666da363dfbf60 100644 (file)
@@ -218,7 +218,9 @@ void dotneato_write_one(GVC_t * gvc, graph_t * g)
 
     }
     fflush(gvc->job->output_file);
+#if 0
     emit_deinit(gvc);
+#endif
 }
 
 static FILE *file_select(char *str)