summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2006-09-28 20:06:42 (GMT)
committerdgp <dgp@users.sourceforge.net>2006-09-28 20:06:42 (GMT)
commit341cfa533b51784f8cb9183ec8e2ed6fe6a26e32 (patch)
tree6eca71999a4390624d89bbc89b813a4d2e276495 /ChangeLog
parent4c1d56db0ef7325c1817833b5f178dd393fb54e9 (diff)
downloadtcl-341cfa533b51784f8cb9183ec8e2ed6fe6a26e32.zip
tcl-341cfa533b51784f8cb9183ec8e2ed6fe6a26e32.tar.gz
tcl-341cfa533b51784f8cb9183ec8e2ed6fe6a26e32.tar.bz2
* generic/tclExecute.c: Corrected error in INST_LSHIFT in the
* tests/expr.test: calculation done to determine whether a shift in the (long int) type is possible. The calculation had literal value "1" where it needed a value "1L" to compute the correct result. Error detected via testing with the math::bigfloat package [Bug 1567222]
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a5cee9a..de9e314 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,13 @@
2006-09-27 Don Porter <dgp@users.sourceforge.net>
+ * generic/tclExecute.c: Corrected error in INST_LSHIFT in the
+ * tests/expr.test: calculation done to determine whether a
+ shift in the (long int) type is possible. The calculation had
+ literal value "1" where it needed a value "1L" to compute the
+ correct result. Error detected via testing with the
+ math::bigfloat package [Bug 1567222]
+
* generic/tclPkg.c (CompareVersion): Flatten strcmp() results to
{-1, 0, 1} to match expectations of CompareVersion() callers.