diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-05-15 10:38:25 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-05-15 10:38:25 (GMT) |
commit | 1eacac1aa2e8e1f6a11ad280d4d5ac4774672c81 (patch) | |
tree | 91f996a24941dbc19754fafc12aa722dfe281445 /generic/tclCompile.h | |
parent | d7477a9621b19997f770d8df75b8a071704973d0 (diff) | |
download | tcl-1eacac1aa2e8e1f6a11ad280d4d5ac4774672c81.zip tcl-1eacac1aa2e8e1f6a11ad280d4d5ac4774672c81.tar.gz tcl-1eacac1aa2e8e1f6a11ad280d4d5ac4774672c81.tar.bz2 |
A better technique for [list {*}blah]. Remove the INST_LIST_EXPANDED opcode (and the complex machinery associated with it) as as it is no longer needed.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index c68d3ec..bf00df9 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -716,10 +716,9 @@ typedef struct ByteCode { #define INST_INVOKE_REPLACE 163 #define INST_LIST_CONCAT 164 -#define INST_LIST_EXPANDED 165 /* The last opcode */ -#define LAST_INST_OPCODE 165 +#define LAST_INST_OPCODE 164 /* * Table describing the Tcl bytecode instructions: their name (for displaying |