summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2001-08-23 14:22:49 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2001-08-23 14:22:49 (GMT)
commit9222d1cf0d56f0b84b3645f54e0b1422ba7f4b30 (patch)
tree6fa3cc7a93c57b5abdec868f69e6dc434a60ff47 /ChangeLog
parentca48af684b8e9b39e58b1eafbc3747edda1a249f (diff)
downloadtcl-9222d1cf0d56f0b84b3645f54e0b1422ba7f4b30.zip
tcl-9222d1cf0d56f0b84b3645f54e0b1422ba7f4b30.tar.gz
tcl-9222d1cf0d56f0b84b3645f54e0b1422ba7f4b30.tar.bz2
Fixed annoying fault in [binary format] on 64-bit architectures.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b0bb9a..b44769a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2001-08-23 Donal K. Fellows <fellowsd@cs.man.ac.uk>
+ * generic/tclBinary.c (FormatNumber): Extract a long from the
+ object and not an int, to stop [binary format] from being unable
+ to format some input numbers on architectures where sizeof(int) is
+ less than sizeof(long) (particularly Alpha.) [Bug #441861]
+
* tests/format.test: Converted conditional execution of tests into
a test constraint.