Dear Allin and all,

I found the following script works well in English Language mode but only part of the output was shown in Chinese Language mode. The output seems to be stopped after the fourth line (i.e., matrix Coeff = $coeff) in Chinese Language mode. There are not further output beyong the fourth line of the script.

It is however that the script was executed completely. This potential Chinese-only bug occurs both in gretl 1.9.12 and 1.9.12 cvs under winXP.
But the script work normally under my ubuntu 10.04 in Chinese Language mode.

Thanks

Yi-Nung Yang


<hansl>
open broiler
list xlist = const Y PCHICK PBEEF PCOR
ols 1 xlist
matrix Coeff = $coeff
matrix Stderr = $stderr
matrix Table1 = Coeff ~ Stderr
colnames(Table1, "Coeff. Std.Err.")
rownames(Table1, xlist)
print Table1
</hansl>