summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorandreask <andreask>2011-05-17 21:26:26 (GMT)
committerandreask <andreask>2011-05-17 21:26:26 (GMT)
commitae8c7e936a3c00a11a29a50f2b80df021acbea51 (patch)
treea4bbac44980f75997bbb2923ce29f7d17cb3a70d /ChangeLog
parent96524bb4dd0127496d2baf6792d0de093157297b (diff)
downloadtcl-ae8c7e936a3c00a11a29a50f2b80df021acbea51.zip
tcl-ae8c7e936a3c00a11a29a50f2b80df021acbea51.tar.gz
tcl-ae8c7e936a3c00a11a29a50f2b80df021acbea51.tar.bz2
* generic/tclCompile.c (TclFixupForwardJump): Tracked down and fixed
* generic/tclBasic.c (TclArgumentBCEnter): the cause of a violation of my assertion that 'ePtr->nline == objc' in TclArgumentBCEnter. When a bytecode was grown during jump fixup the pc -> command line mapping was not updated. When things aligned just wrong the mapping would direct command A to the data for command B, with a different number of arguments.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 98af3b4..a79456b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2011-05-17 Andreas Kupries <andreask@activestate.com>
+
+ * generic/tclCompile.c (TclFixupForwardJump): Tracked down and fixed
+ * generic/tclBasic.c (TclArgumentBCEnter): the cause of a violation
+ of my assertion that 'ePtr->nline == objc' in TclArgumentBCEnter.
+ When a bytecode was grown during jump fixup the pc -> command line
+ mapping was not updated. When things aligned just wrong the mapping
+ would direct command A to the data for command B, with a different
+ number of arguments.
+
2011-05-10 Don Porter <dgp@users.sourceforge.net>
* generic/tclInt.h: New internal routines TclScanElement() and