From f6073309b8eac5d0f72ca9f4cc5a5c4e76fccb16 Mon Sep 17 00:00:00 2001 From: Miguel Sofer Date: Sat, 7 Apr 2007 22:50:04 +0000 Subject: * generic/tclCompile (tclInstructionTable): fixed bug in description of INST_START_COMMAND. --- ChangeLog | 5 +++++ generic/tclCompile.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a1fbffd..9656fee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2007-04-07 Miguel Sofer + * generic/tclCompile (tclInstructionTable): fixed bug in + description of INST_START_COMMAND. + +2007-04-07 Miguel Sofer + * generic/tclExecute.c (TEBC): small code reduction. 2007-04-06 Miguel Sofer diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 419e177..14d092a 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.112 2007/04/03 01:34:36 msofer Exp $ + * RCS: @(#) $Id: tclCompile.c,v 1.113 2007/04/07 22:50:05 msofer Exp $ */ #include "tclInt.h" @@ -299,7 +299,7 @@ InstructionDesc tclInstructionTable[] = { /* List Index: push (lindex stktop op4) */ {"listRangeImm", 9, 0, 2, {OPERAND_IDX4, OPERAND_IDX4}}, /* List Range: push (lrange stktop op4 op4) */ - {"startCommand", 9, 0, 1, {OPERAND_INT4,OPERAND_UINT4}}, + {"startCommand", 9, 0, 2, {OPERAND_INT4,OPERAND_UINT4}}, /* Start of bytecoded command: op is the length of the cmd's code, op2 * is number of commands here */ -- cgit v0.12