diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-01-03 14:08:49 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-01-03 14:08:49 (GMT) |
commit | dfe92fee6cdcf5ae490fb332111618fbb08a6bdd (patch) | |
tree | 67beb5bc2ab01dea876bee2dcd825f95eb7ae6b8 /generic/tclCompile.c | |
parent | d9823d1d2b4d2f7e653dbd27b3ce38b470cf7b42 (diff) | |
parent | 6470859885f92e276993f88322b090eca3cb24f2 (diff) | |
download | tcl-dfe92fee6cdcf5ae490fb332111618fbb08a6bdd.zip tcl-dfe92fee6cdcf5ae490fb332111618fbb08a6bdd.tar.gz tcl-dfe92fee6cdcf5ae490fb332111618fbb08a6bdd.tar.bz2 |
merge main dev branch
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 309682d..45a74d7 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -529,6 +529,11 @@ InstructionDesc const tclInstructionTable[] = { /* Forces the variable indexed by opnd to be an array. Does not touch * the stack. */ + {"invokeReplace", 6, INT_MIN, 2, {OPERAND_UINT4,OPERAND_UINT1}}, + /* Invoke command named objv[0], replacing the first two words with + * the word at the top of the stack; + * <objc,objv> = <op4,top op4 after popping 1> */ + {NULL, 0, 0, 0, {OPERAND_NONE}} }; |