From: erg Date: Fri, 23 Mar 2007 17:34:15 +0000 (+0000) Subject: Remove redundent ULR output in begin_node/edge/cluster; with 2.12 X-Git-Tag: LAST_LIBGRAPH~32^2~5606 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=483f2250b1d87141e27de140f88222d329078dc9;p=graphviz Remove redundent ULR output in begin_node/edge/cluster; with 2.12 architecture, we rely on begin_anchor to handle all of this explicitly --- diff --git a/plugin/core/gvrender_core_ps.c b/plugin/core/gvrender_core_ps.c index 0b8edfba7..85ea1ddc1 100644 --- a/plugin/core/gvrender_core_ps.c +++ b/plugin/core/gvrender_core_ps.c @@ -177,6 +177,7 @@ static void psgen_begin_cluster(GVJ_t * job) core_printf(job, "%% %s\n", obj->u.sg->name); core_fputs(job, "gsave\n"); +#if 0 if (obj->url && obj->url_map_p) { core_printf(job, "[ /Rect [ %g %g %g %g ]\n", obj->url_map_p[0].x, obj->url_map_p[0].y, @@ -187,6 +188,7 @@ static void psgen_begin_cluster(GVJ_t * job) "/ANN pdfmark\n", ps_string(obj->url, isLatin1)); } +#endif } static void psgen_end_cluster(GVJ_t * job) @@ -199,6 +201,7 @@ static void psgen_begin_node(GVJ_t * job) obj_state_t *obj = job->obj; core_fputs(job, "gsave\n"); +#if 0 if (obj->url && obj->url_map_p) { core_printf(job, "[ /Rect [ %g %g %g %g ]\n", obj->url_map_p[0].x, obj->url_map_p[0].y, @@ -209,6 +212,7 @@ static void psgen_begin_node(GVJ_t * job) "/ANN pdfmark\n", ps_string(obj->url, isLatin1)); } +#endif } static void psgen_end_node(GVJ_t * job) @@ -222,6 +226,7 @@ psgen_begin_edge(GVJ_t * job) obj_state_t *obj = job->obj; core_fputs(job, "gsave\n"); +#if 0 if (obj->tailurl && obj->tailendurl_map_p) { core_printf(job, "[ /Rect [ %g %g %g %g ]\n", obj->tailendurl_map_p[0].x, obj->tailendurl_map_p[0].y, @@ -242,6 +247,7 @@ psgen_begin_edge(GVJ_t * job) "/ANN pdfmark\n", ps_string(obj->headurl, isLatin1)); } +#endif } static void psgen_end_edge(GVJ_t * job)