aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-12 12:34:18 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-12 12:34:18 -0200
commit42dd080a2e3e8fb6887ca1e066f53bb8fd23c9e7 (patch)
treed76dc42ba57be091b7ebcc319ef168723a4ae479
parent9957f7d59825ef4b99e2968b5f8a55cf0d698004 (diff)
downloadlua-42dd080a2e3e8fb6887ca1e066f53bb8fd23c9e7.tar.gz
lua-42dd080a2e3e8fb6887ca1e066f53bb8fd23c9e7.tar.bz2
lua-42dd080a2e3e8fb6887ca1e066f53bb8fd23c9e7.zip
details
-rw-r--r--ltests.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltests.h b/ltests.h
index 885d9235..5cca2584 100644
--- a/ltests.h
+++ b/ltests.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.h,v 1.16 2002/10/08 18:45:07 roberto Exp roberto $ 2** $Id: ltests.h,v 1.17 2002/10/25 20:05:28 roberto Exp roberto $
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*/
@@ -51,7 +51,7 @@ extern int islocked;
51 51
52int luaB_opentests (lua_State *L); 52int luaB_opentests (lua_State *L);
53 53
54#define lua_userinit(L) (luaB_opentests(L) + openstdlibs(L)) 54#define LUA_EXTRALIBS { "tests", luaB_opentests },
55 55
56 56
57 57