From f51775950737eb4d097cda0bba143973b5385947 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 21 Jun 2000 14:05:49 -0300 Subject: details --- lopcodes.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lopcodes.h') diff --git a/lopcodes.h b/lopcodes.h index 6fd583a8..f98f562b 100644 --- a/lopcodes.h +++ b/lopcodes.h @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.h,v 1.62 2000/05/22 18:44:46 roberto Exp roberto $ +** $Id: lopcodes.h,v 1.63 2000/06/05 14:56:18 roberto Exp roberto $ ** Opcodes for Lua virtual machine ** See Copyright Notice in lua.h */ @@ -152,6 +152,7 @@ OP_SETLINE/* U - - LINE=u */ } OpCode; +#define NUM_OPCODES ((int)OP_SETLINE+1) #define ISJUMP(o) (OP_JMPNE <= (o) && (o) <= OP_JMP) -- cgit v1.2.3-55-g6feb