diff options
author | dgp <dgp@users.sourceforge.net> | 2006-09-28 20:06:42 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-09-28 20:06:42 (GMT) |
commit | 341cfa533b51784f8cb9183ec8e2ed6fe6a26e32 (patch) | |
tree | 6eca71999a4390624d89bbc89b813a4d2e276495 /ChangeLog | |
parent | 4c1d56db0ef7325c1817833b5f178dd393fb54e9 (diff) | |
download | tcl-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-- | ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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. |