On Sun, 16 Jan 2011, Hélio Guilherme wrote:
When I was generating a Range-Mean graph for a small sample variable
(size=10), I got garbage text after the error message. This happens in
non-English versions, like both Portuguese variants...
I have commented a line of code and problem was solved:
~/gretl$ vi +137 plugin/range-mean.c
if (nsamp < 16) {
pputs(prn, _("Sample is too small for range-mean graph\n"));
/* errmsg(err, prn); */
return E_DATA;
}
Thanks, you're right, that line you commented out should not be
there. Now fixed in CVS.
Allin