aboutsummaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-23 14:50:49 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-23 14:50:49 -0300
commit8af1ca02e00e1b35254fadd583b626bfc8c27dd8 (patch)
tree5fb746461ffc3af7cbde026d69e3619763a6bc12 /lua.c
parentf1eb79fdf48170ecc4f0275f4be46e2a98323e8a (diff)
downloadlua-8af1ca02e00e1b35254fadd583b626bfc8c27dd8.tar.gz
lua-8af1ca02e00e1b35254fadd583b626bfc8c27dd8.tar.bz2
lua-8af1ca02e00e1b35254fadd583b626bfc8c27dd8.zip
LUA_USERCONFIG is no longer necessary
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/lua.c b/lua.c
index 4a5d8f5f..2a4d6561 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.136 2005/03/21 18:12:07 roberto Exp roberto $ 2** $Id: lua.c,v 1.137 2005/03/22 16:55:35 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -18,15 +18,6 @@
18#include "lualib.h" 18#include "lualib.h"
19 19
20 20
21/*
22** generic extra include file
23*/
24#ifdef LUA_USERCONFIG
25#include LUA_USERCONFIG
26#endif
27
28
29
30 21
31static lua_State *globalL = NULL; 22static lua_State *globalL = NULL;
32 23