|
From: Ethan M. <eam...@gm...> - 2018-03-05 21:23:32
|
On Mon, Mar 5, 2018 at 1:04 PM, Robert Dodier <rob...@gm...> wrote: > On Mon, Mar 5, 2018 at 11:41 AM, Ethan Merritt <eam...@gm...> > wrote: > > > Yes. A strange bug (actually 2 separate bugs) triggered by giving an > empty > > string as a title for a plot in style "points" with the svg terminal. > > > > Fixed now for 5.2 and 5.3 > > Thanks, I've updated from Git and now the SVG output does not contain the > mouse event handling, as expected. > > Is there a work around for unpatched versions? > > Simplest is to not give empty plot titles. Use "notitle" instead. The onmouse symptom is weird, but since you can edit it out of the *.svg file afterward it's not the worst part. The other bug (which apparently wasn't fatal on your test machine) is that giving an empty title caused a zero length buffer to be allocated and used. This could generate a segfault from illegal memory access. > best, > Robert Dodier > |