From f8df21bd2071c4e3729d37d1552f54ca2742551a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 8 Mar 2005 17:10:05 -0300 Subject: `luaconf.h´ exports all its definitions always (so all of them must have a lua/LUA prefix). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lopcodes.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lopcodes.h') diff --git a/lopcodes.h b/lopcodes.h index c8bd6673..0754c1bc 100644 --- a/lopcodes.h +++ b/lopcodes.h @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.h,v 1.114 2004/12/02 12:59:10 roberto Exp roberto $ +** $Id: lopcodes.h,v 1.115 2005/03/08 18:00:16 roberto Exp roberto $ ** Opcodes for Lua virtual machine ** See Copyright Notice in lua.h */ @@ -51,9 +51,9 @@ enum OpMode {iABC, iABx, iAsBx}; /* basic instruction format */ /* ** limits for opcode arguments. ** we use (signed) int to manipulate most arguments, -** so they must fit in LUA_BITSINT-1 bits (-1 for sign) +** so they must fit in LUAC_BITSINT-1 bits (-1 for sign) */ -#if SIZE_Bx < LUA_BITSINT-1 +#if SIZE_Bx < LUAC_BITSINT-1 #define MAXARG_Bx ((1<>1) /* `sBx' is signed */ #else -- cgit v1.2.3-55-g6feb