Hi All,
In wand/drawing-wand.c, online 5983 we see:
(void) MvgPrintf(wand,"interword_spacing %lf\n",interword_spacing);
It should really be:
(void) MvgPrintf(wand,"interword-spacing %lf\n",interword_spacing);
(Notice the dash instead of an underscore between the words interword and spacing in the string).
We see a similar bug on line 5942 where "interline_spacing" needs to change to "interline-spacing"
Cheers!
Bug in DrawSetTextInterwordSpacing
Re: Bug in DrawSetTextInterwordSpacing
Thanks, we'll get a patch into the Subversion trunk by sometime tomorrow.