diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-02-19 10:26:24 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-02-19 10:26:24 (GMT) |
commit | 5aac27662665e33e21c3cf60764cb676fdfe5d19 (patch) | |
tree | f6962e8c9409c94325b90f93a1c815d4b0ef0e42 /ChangeLog | |
parent | d1e337a77f3c449c4c13f528cabddeb241b75bd2 (diff) | |
download | tcl-5aac27662665e33e21c3cf60764cb676fdfe5d19.zip tcl-5aac27662665e33e21c3cf60764cb676fdfe5d19.tar.gz tcl-5aac27662665e33e21c3cf60764cb676fdfe5d19.tar.bz2 |
Fixed behaviour of [format] on 64-bit platforms by defining it to work with
machine words by default. This seems to be what the test suite expected
anyway, and it is a fairly sensible choice. The other alternative was to
make %d always 32-bit and %ld always 64-bit, but that'd be more complex to do.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,11 @@ +2002-02-19 Donal K. Fellows <fellowsd@cs.man.ac.uk> + + * doc/format.n: Updated docs to list the specification. + * generic/tclCmdAH.c (Tcl_FormatObjCmd): Made behaviour on 64-bit + platforms correctly meet the specification, that %d works with the + native word-sized integer, instead of trying to guess (wrongly) + from the value being passed. + 2002-02-19 Don Porter <dgp@users.sourceforge.net> * changes: First draft of updated changes for 8.4a4 release. |