On Mon, 18 Nov 2013, Giuseppe Vittucci wrote:
when the value labels in functions include spaces gretl 1.9.13
returns
an error (the previous version worked as expected...)
Here is a simple code to reproduce the error.
1) This works:
function scalar pippo (
int p[0:1:1] {"pippoA","pippoB"})
return p
end function
2) This flags an error:
function scalar pippo (
int p[0:1:1] {"pippo A","pippo B"})
return p
end function
That was fixed a few weeks ago in CVS. Version 1.9.14 will have the fix.
Allin Cottrell