From 8af1ca02e00e1b35254fadd583b626bfc8c27dd8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 23 Mar 2005 14:50:49 -0300 Subject: [PATCH] LUA_USERCONFIG is no longer necessary --- lua.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/lua.c b/lua.c index 4a5d8f5f..2a4d6561 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.136 2005/03/21 18:12:07 roberto Exp roberto $ +** $Id: lua.c,v 1.137 2005/03/22 16:55:35 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -18,15 +18,6 @@ #include "lualib.h" -/* -** generic extra include file -*/ -#ifdef LUA_USERCONFIG -#include LUA_USERCONFIG -#endif - - - static lua_State *globalL = NULL;