|
From: Juergen W. <wie...@fr...> - 2005-11-04 11:44:21
|
Ethan Merritt wrote: > You could try the following minimal patch: > > --- gnuplot/src/term.c 2005-10-20 09:22:25.000000000 -0700 > +++ gnuplot-cvs/src/term.c 2005-11-03 09:22:40.618537816 -0800 > @@ -1157,7 +1158,8 @@ > > /* Clip arrows to canvas */ > clip_save = clip_area; > - clip_area = &canvas; > + if (!(term->flags & TERM_CAN_CLIP)) > + clip_area = &canvas; > > /* Calculate and draw arrow heads. > * Draw no head for arrows with length = 0, or, to be more specific, > > > > That should fix your particular plot, but I'm not sure what all the > ramifications are for other plots. Cool. This works for me. I can't see any problems with any of my plot scripts. But I only use the postscript terminal (eps) and I'm not familiar with this part of gnuplot. Thank you very much, Juergen |