diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2007-09-10 21:47:19 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2007-09-10 21:47:19 (GMT) |
commit | 6726323860d0fd2b135fac517b16af7e6f03dfc7 (patch) | |
tree | 53df79f30aa1f95acee9cfb25609b392d548fb24 /generic/tclCompile.c | |
parent | 71d40deea8b47cd669486365cd6f61855e4ecbd2 (diff) | |
download | tcl-6726323860d0fd2b135fac517b16af7e6f03dfc7.zip tcl-6726323860d0fd2b135fac517b16af7e6f03dfc7.tar.gz tcl-6726323860d0fd2b135fac517b16af7e6f03dfc7.tar.bz2 |
* generic/tclCompile.c: fix tclInstructionTable entry for
dictUpdateEnd
* generic/tclExecute.c: remove unneeded setting of 'cleanup'
variable before jumping to checkForCatch.
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 35b4a75..820642f 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.c,v 1.131 2007/09/09 17:02:33 dgp Exp $ + * RCS: @(#) $Id: tclCompile.c,v 1.132 2007/09/10 21:47:20 msofer Exp $ */ #include "tclInt.h" @@ -358,7 +358,7 @@ InstructionDesc tclInstructionTable[] = { * of keys (popped from the stack) must be the same length as the list * of variables. * Stack: ... keyList => ... */ - {"dictUpdateEnd", 9, -1, 1, {OPERAND_LVT4, OPERAND_AUX4}}, + {"dictUpdateEnd", 9, -1, 2, {OPERAND_LVT4, OPERAND_AUX4}}, /* Reflect the state of local variables (described in the aux data * referred to by the second immediate argument) back to the state of * the dictionary in the variable referred to by the first immediate |