summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2005-07-27 18:23:58 (GMT)
committerdgp <dgp@users.sourceforge.net>2005-07-27 18:23:58 (GMT)
commit41ae541c110c5729d4467ce0c5c0a5bc9aa24d48 (patch)
tree7a802820f5119c7bdc8585cbd1db617cbd5f4e63 /ChangeLog
parente5c93914d5de3897143d17c46b6e4faf138db73c (diff)
downloadtcl-41ae541c110c5729d4467ce0c5c0a5bc9aa24d48.zip
tcl-41ae541c110c5729d4467ce0c5c0a5bc9aa24d48.tar.gz
tcl-41ae541c110c5729d4467ce0c5c0a5bc9aa24d48.tar.bz2
* generic/tclUtil.c: Converted the $::tcl_precision value to be
kept per-thread to prevent different threads from stomping on each others' formatting prescriptions. ***POTENTIAL INCOMPATIBILITY*** Multi-threaded programs that set the value of ::tcl_precision will now have to set it in each thread.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4233574..bb91299 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,20 @@
2005-07-27 Don Porter <dgp@users.sourceforge.net>
+ * generic/tclUtil.c: Converted the $::tcl_precision value to be
+ kept per-thread to prevent different threads from stomping on each
+ others' formatting prescriptions.
+
+ ***POTENTIAL INCOMPATIBILITY*** Multi-threaded programs that set
+ the value of ::tcl_precision will now have to set it in each thread.
+
* tests/expr.test: Consolidated equivalent constraints into
* tests/fileName.test: single definitions and (more precise) names:
* tests/get.test: longis32bit, 32bit, !intsAre64bit => longIs32bit
* tests/listObj.test: empty => emptyTest; winOnly => win
* tests/obj.test: intsAre64bit => longIs64bit
+ Also updated some "nonPortable" tests to use constraints that mark
+ precisely what about them isn't portable, so the tests can run where
+ they work.
* library/init.tcl ([unknown]): Corrected return code handling
in the portions of [unknown] that expand incomplete commands