summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2004-12-20 18:27:14 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2004-12-20 18:27:14 (GMT)
commit908cedaec87fc9bb58ce5780cf8c00f61b2f128b (patch)
treedfe55b1063f501eb909a26070c7ca8d61fe5cae6 /ChangeLog
parenta0655d89bbe9e5b91b703509126ed1c48a1cf405 (diff)
downloadtcl-908cedaec87fc9bb58ce5780cf8c00f61b2f128b.zip
tcl-908cedaec87fc9bb58ce5780cf8c00f61b2f128b.tar.gz
tcl-908cedaec87fc9bb58ce5780cf8c00f61b2f128b.tar.bz2
* 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 proc load time (instead of two as previously). TclObjInterpProc() now allocates the compiledLocals on the tcl execution stack, using the new TclStackAlloc/Free functions.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ffd2ae..a0f65ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-12-20 Miguel Sofer <msofer@users.sf.net>
+
+ * 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)
+
2004-12-16 Donal K. Fellows <donal.k.fellows@man.ac.uk>
* generic/tclInterp.c (Tcl_LimitSetTime, TimeLimitCallback):