diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-12-30 08:37:49 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-12-30 08:37:49 (GMT) |
commit | 1749e8cdf33e8232f22acc08f9ce4301b00ba7eb (patch) | |
tree | a8680fa7474bcf0220ce6342a82e0a07e23ef8ff /generic/tclCompile.h | |
parent | 96f3f9a79df5d9ce6166a00452822684e177b743 (diff) | |
download | tcl-1749e8cdf33e8232f22acc08f9ce4301b00ba7eb.zip tcl-1749e8cdf33e8232f22acc08f9ce4301b00ba7eb.tar.gz tcl-1749e8cdf33e8232f22acc08f9ce4301b00ba7eb.tar.bz2 |
implement [namespace origin] in bytecode
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 207b710..fb66e90 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -786,8 +786,10 @@ typedef struct ByteCode { #define INST_STR_TITLE 176 #define INST_STR_REPLACE 177 +#define INST_ORIGIN_COMMAND 178 + /* The last opcode */ -#define LAST_INST_OPCODE 177 +#define LAST_INST_OPCODE 178 /* * Table describing the Tcl bytecode instructions: their name (for displaying |