diff options
| author | Miguel Sofer <miguel.sofer@gmail.com> | 2001-11-19 12:25:07 (GMT) |
|---|---|---|
| committer | Miguel Sofer <miguel.sofer@gmail.com> | 2001-11-19 12:25:07 (GMT) |
| commit | 4803acf7b4b96e78ff6c936f2eef1e5a264a876f (patch) | |
| tree | 351c5ec76d69e0ee88a05841129e5970300ec6f9 | |
| parent | 53744c94ca0600546e23961830916b04455f4d9f (diff) | |
| download | tcl-4803acf7b4b96e78ff6c936f2eef1e5a264a876f.zip tcl-4803acf7b4b96e78ff6c936f2eef1e5a264a876f.tar.gz tcl-4803acf7b4b96e78ff6c936f2eef1e5a264a876f.tar.bz2 | |
patch for [Bug 483309]
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | generic/tclCompCmds.c | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2001-11-16 Miguel Sofer <msofer@users.sourceforge.net> + + * generic/tclCompCmds.c: patch for [Bug 483309] (petasis). + 2001-11-16 Kevin B. Kenny <kennykb@users.sourceforge.net> * generic/tclListObj.c: removed a C++-style comment that diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c index 9ea0064..14a82f4 100644 --- a/generic/tclCompCmds.c +++ b/generic/tclCompCmds.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompCmds.c,v 1.15 2001/11/14 23:17:03 hobbs Exp $ + * RCS: @(#) $Id: tclCompCmds.c,v 1.16 2001/11/19 12:25:08 msofer Exp $ */ #include "tclInt.h" @@ -1955,6 +1955,7 @@ TclCompileListCmd(interp, parsePtr, envPtr) } valueTokenPtr = valueTokenPtr + (valueTokenPtr->numComponents + 1); } + envPtr->maxStackDepth = depth; TclEmitInstInt4(INST_LIST, numWords - 1, envPtr); } |
