Dear Jack and Allin,
I found a problem with format specifiers and printf and sprintf.
Please take a look at the following example:
<hansl>
printf "start->%10s<-end\n", "aeiou"
printf "start->%10s<-end\n", "áéíóú"
string s1 = sprintf("start->%10s<-end\n", "aeiou")
string s2 = sprintf("start->%10s<-end\n", "áéíóú")
print s1 s2
<\hansl>
I believe Gretl is ignoring accented names when formating the output.
Best regards,
Henrique Andrade