summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2003-09-29 22:03:43 (GMT)
committerdgp <dgp@users.sourceforge.net>2003-09-29 22:03:43 (GMT)
commit727cc7ed58601550160c4b3dbc91bec67fec705f (patch)
tree2317435f500aeefe27f8bf5723cfec0c8f8b64e2 /ChangeLog
parentd6fa269907f590d521bdbc7aa2c2225f3beb3526 (diff)
downloadtcl-727cc7ed58601550160c4b3dbc91bec67fec705f.zip
tcl-727cc7ed58601550160c4b3dbc91bec67fec705f.tar.gz
tcl-727cc7ed58601550160c4b3dbc91bec67fec705f.tar.bz2
* generic/tclBasic.c (CallCommandTraces): Added safety bit
* tests/trace.test: masking to prevent any of the bit values TCL_TRACE_*_EXEC from leaking into the flags field of any Command struct. This does not fix [Bug 811483] but helps to contain some of its worst symptoms. Also backported the corrections to test trace-28.4 from Vince Darley.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c7bfd12..281d24f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2003-09-29 Don Porter <dgp@users.sourceforge.net>
+
+ * generic/tclBasic.c (CallCommandTraces): Added safety bit
+ * tests/trace.test: masking to prevent any of the bit values
+ TCL_TRACE_*_EXEC from leaking into the flags field of any
+ Command struct. This does not fix [Bug 811483] but helps to
+ contain some of its worst symptoms. Also backported the corrections
+ to test trace-28.4 from Vince Darley.
+
2003-09-29 Donal K. Fellows <fellowsd@cs.man.ac.uk>
* library/http/http.tcl (geturl): Correctly check the type of
@@ -20,7 +29,7 @@
2003-09-23 Don Porter <dgp@users.sourceforge.net>
- * generic/tclCmdMZ.c (): Fixed [Bug 807243] where
+ * generic/tclCmdMZ.c: Fixed [Bug 807243] where
* tests/trace.test (trace-31,32.*): the introspection results
of both [trace info command] and [trace info execution] were getting
co-mingled. Thanks to Mark Saye for the report.