diff options
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index f5f1a1e..e8d5cbc 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.70.2.10 2007/11/01 16:25:57 dgp Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.70.2.11 2007/11/12 19:18:16 dgp Exp $ */ #ifndef _TCLCOMPILATION @@ -636,8 +636,12 @@ typedef struct ByteCode { #define INST_REVERSE 126 +/* regexp instruction */ + +#define INST_REGEXP 127 + /* The last opcode */ -#define LAST_INST_OPCODE 126 +#define LAST_INST_OPCODE 127 /* * Table describing the Tcl bytecode instructions: their name (for displaying |