summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2004-12-20 21:20:02 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2004-12-20 21:20:02 (GMT)
commit3f7f31fb81efcc04c41dcc79f2417a766353ad66 (patch)
tree395d156e658c6393f8807155e0a8f51127caf620 /ChangeLog
parent908cedaec87fc9bb58ce5780cf8c00f61b2f128b (diff)
downloadtcl-3f7f31fb81efcc04c41dcc79f2417a766353ad66.zip
tcl-3f7f31fb81efcc04c41dcc79f2417a766353ad66.tar.gz
tcl-3f7f31fb81efcc04c41dcc79f2417a766353ad66.tar.bz2
fix for last commit; thanks dgp and tclguy for catch/classify/throw
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a0f65ac..2d2512d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,8 +2,10 @@
* generic/tclCompile.c: moved TclInitCompiledLocals to tclProc.c
* generic/tclProc.c: new static InitCompiledLocals to allow for a
- single pass over the proc's arguments at procload time (instead of
- two, asdone previously)
+ single pass over the proc's arguments at proc load time (instead of
+ two as previously). TclObjInterpProc() now allocates the
+ compiledLocals on the tcl execution stack, using the new
+ TclStackAlloc/Free functions.
2004-12-16 Donal K. Fellows <donal.k.fellows@man.ac.uk>