diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-09-15 09:46:22 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-09-15 09:46:22 (GMT) |
commit | e3d773b05110c9cf0572203aea7a1e0cd971fe8b (patch) | |
tree | 4c5ae19310fe8496c53b5385319a1732467bf372 /generic/tclCompile.h | |
parent | da60f636030ff5e28efdfe34eb534c9dd46e2fb3 (diff) | |
download | tcl-e3d773b05110c9cf0572203aea7a1e0cd971fe8b.zip tcl-e3d773b05110c9cf0572203aea7a1e0cd971fe8b.tar.gz tcl-e3d773b05110c9cf0572203aea7a1e0cd971fe8b.tar.bz2 |
Oops! Last checkin had wrong value for LAST_INST_OPCODE. D'oh!
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 3233fd3..89f27a5 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -8,7 +8,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.37 2003/09/12 23:55:32 dkf Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.38 2003/09/15 09:46:22 dkf Exp $ */ #ifndef _TCLCOMPILATION @@ -527,7 +527,7 @@ typedef struct ByteCode { #define INST_EXPON 99 /* TIP#123 - exponentiation */ /* The last opcode */ -#define LAST_INST_OPCODE 98 +#define LAST_INST_OPCODE 99 /* * Table describing the Tcl bytecode instructions: their name (for |