summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2001-09-04 11:54:27 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2001-09-04 11:54:27 (GMT)
commitc95c5d9ab8b05273520679ca23221aee7dbe27c4 (patch)
treeb532b5860809bee8e28f1e582bbf025fd008249c /generic/tclCompile.c
parent06ed7d4db22f850c492e06b2ddc4e4ca6f1a1bb2 (diff)
downloadtcl-c95c5d9ab8b05273520679ca23221aee7dbe27c4.zip
tcl-c95c5d9ab8b05273520679ca23221aee7dbe27c4.tar.gz
tcl-c95c5d9ab8b05273520679ca23221aee7dbe27c4.tar.bz2
fixed incorrect opreands for INST_LIST [Bug: 458241]
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index f39ae24..8250b7e 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.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: tclCompile.c,v 1.22 2001/05/17 02:13:02 hobbs Exp $
+ * RCS: @(#) $Id: tclCompile.c,v 1.23 2001/09/04 11:54:27 msofer Exp $
*/
#include "tclInt.h"
@@ -222,7 +222,7 @@ InstructionDesc instructionTable[] = {
/* Str Index: push (strindex stknext stktop) */
{"strmatch", 1, 0, {OPERAND_NONE}},
/* Str Match: push (strmatch stkforenext stknext stktop) */
- {"list", 1, 0, {OPERAND_NONE}},
+ {"list", 5, 1, {OPERAND_UINT4}},
/* List: push (stk1 stk2 ... stktop) */
{"listindex", 1, 0, {OPERAND_NONE}},
/* List Index: push (listindex stknext stktop) */