diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-12-28 17:21:39 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-12-28 17:21:39 (GMT) |
commit | 7ccc50d8b67a7e642928d04bfb66ec3ee4052fbb (patch) | |
tree | 660424262f795a1470aa234a0fa49a56fc7a804d /generic/tclCompile.h | |
parent | 0dc5e35d3b0f0bda4129dd72223c109c778a4331 (diff) | |
download | tcl-7ccc50d8b67a7e642928d04bfb66ec3ee4052fbb.zip tcl-7ccc50d8b67a7e642928d04bfb66ec3ee4052fbb.tar.gz tcl-7ccc50d8b67a7e642928d04bfb66ec3ee4052fbb.tar.bz2 |
completed instruction implementation
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 6226f7f..207b710 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -784,9 +784,10 @@ typedef struct ByteCode { #define INST_STR_UPPER 174 #define INST_STR_LOWER 175 #define INST_STR_TITLE 176 +#define INST_STR_REPLACE 177 /* The last opcode */ -#define LAST_INST_OPCODE 176 +#define LAST_INST_OPCODE 177 /* * Table describing the Tcl bytecode instructions: their name (for displaying |