aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-10-17 19:06:56 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-10-17 19:06:56 -0200
commit7cd37142f404462634a5049a840f572e85c5762b (patch)
treeaccae0b6d4213a87205a303d2be57b0903e8bb88
parente7c2eebd87ac0241d346ae3ac01336708f0729c1 (diff)
downloadlua-7cd37142f404462634a5049a840f572e85c5762b.tar.gz
lua-7cd37142f404462634a5049a840f572e85c5762b.tar.bz2
lua-7cd37142f404462634a5049a840f572e85c5762b.zip
details
-rw-r--r--ltests.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ltests.h b/ltests.h
index bf460c35..859ca9ca 100644
--- a/ltests.h
+++ b/ltests.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.h,v 1.7 2001/06/28 19:58:57 roberto Exp $ 2** $Id: ltests.h,v 1.8 2001/08/31 19:46:07 roberto Exp $
3** Internal Header for Debugging of the Lua Implementation 3** Internal Header for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -55,4 +55,10 @@ void luaB_opentests (lua_State *L);
55#define LUA_USERINIT(L) (luaB_opentests(L), openstdlibs(L)) 55#define LUA_USERINIT(L) (luaB_opentests(L), openstdlibs(L))
56 56
57 57
58
59/* change some sizes to give some bugs a chance */
60
61#define LUAL_BUFFERSIZE 27
62#define ZBSIZE 29
63
58#endif 64#endif