I have all these Tcl/Tk version 8.1 programs that have become broken because Tcl/Tk 8.5.10 is not handling string/numeric conversions correctly.
Here, shell into Tcl, and type:
% expr {01}
1
(and so on..)
% expr {06}
6
% expr {07}
7
and then we get to 8...
% expr {08}
missing operator at "_@_"
looks like invalid octal number
But it gets worse. Still in Tcl shell, try this:
In my Tcl8.1 shell:
% format "%.0f" {08}
8
But in my new and improved Tcl8.5 shell, I get an error:
% format "%.0f" {08}
expected floating-point number but got "08" (looks like invalid octal number)
This is just goofy!
I have all this code that works ok in Tcl7.6 and Tcl8.1, but which started giving
weird, random results in Tcl8.5. Only when the number 08 happened to
get generated or be used! I have spent hours trying to figure out the problem.
But it turns out it is just a nasty sack of code that I am using!
So, I am posting this rant as a warning.
Tcl/Tk Version 8.5.10 handles the number eight incorrectly. If you are
expecting sane behavior from your format statements, this will not happen.
Your code will fly along, until it encounters a string valued at {08}, and
the Tcl 8.5.10 interpreter will generate an error, because it will assume
that {08} is a special-case octal number, regardless of the fact that all the
other little numbers you have used will have worked just fine!
One possible solution to the problem mentioned above is to downgrade back to a Tcl 8.1
shell. I have confirmed that that version does at least handle format
statements for the number 08 correctly. Tcl 8.5.10 shell simply does not.