diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-06-03 14:57:48 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-06-03 14:57:48 (GMT) |
commit | 63a81f0f749c1cc9965874146ba78f865ad5393a (patch) | |
tree | 1ed6907988d96b90ed34453150242be353387802 /generic/tclCompile.h | |
parent | c1e6cd0aaa9c2dd7116092f431faa5c14f284d0a (diff) | |
download | tcl-63a81f0f749c1cc9965874146ba78f865ad5393a.zip tcl-63a81f0f749c1cc9965874146ba78f865ad5393a.tar.gz tcl-63a81f0f749c1cc9965874146ba78f865ad5393a.tar.bz2 |
Next stage of fixing the break/continue generation.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 957c724..75de025 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -772,8 +772,10 @@ typedef struct ByteCode { #define INST_LIST_CONCAT 164 +#define INST_EXPAND_DROP 165 + /* The last opcode */ -#define LAST_INST_OPCODE 164 +#define LAST_INST_OPCODE 165 /* * Table describing the Tcl bytecode instructions: their name (for displaying |