diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2004-12-20 18:27:14 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2004-12-20 18:27:14 (GMT) |
commit | 908cedaec87fc9bb58ce5780cf8c00f61b2f128b (patch) | |
tree | dfe55b1063f501eb909a26070c7ca8d61fe5cae6 /ChangeLog | |
parent | a0655d89bbe9e5b91b703509126ed1c48a1cf405 (diff) | |
download | tcl-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-- | ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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): |