From 322b7b5fc55da0d166efc693cfe674220190b010 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 6 Feb 2001 16:18:58 -0200 Subject: easier to add new initialization functions --- ltests.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltests.h') diff --git a/ltests.h b/ltests.h index e892f710..1d29b82a 100644 --- a/ltests.h +++ b/ltests.h @@ -1,5 +1,5 @@ /* -** $Id: ltests.h,v 1.2 2001/02/05 19:08:01 roberto Exp roberto $ +** $Id: ltests.h,v 1.3 2001/02/06 16:01:29 roberto Exp roberto $ ** Internal Header for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -49,7 +49,7 @@ extern lua_State *lua_state; void luaB_opentests (lua_State *L); -#define LUA_USERINIT(L) luaB_opentests(L) +#define LUA_USERINIT(L) (luaB_opentests(L), openstdlibs(L)) #endif -- cgit v1.2.3-55-g6feb