lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 7cd37142f404462634a5049a840f572e85c5762b
parent e7c2eebd87ac0241d346ae3ac01336708f0729c1
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 17 Oct 2001 19:06:34 -0200

details

Diffstat:
Mltests.h | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/ltests.h b/ltests.h @@ -1,5 +1,5 @@ /* -** $Id: ltests.h,v 1.7 2001/06/28 19:58:57 roberto Exp $ +** $Id: ltests.h,v 1.8 2001/08/31 19:46:07 roberto Exp $ ** Internal Header for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -55,4 +55,10 @@ void luaB_opentests (lua_State *L); #define LUA_USERINIT(L) (luaB_opentests(L), openstdlibs(L)) + +/* change some sizes to give some bugs a chance */ + +#define LUAL_BUFFERSIZE 27 +#define ZBSIZE 29 + #endif