aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.c b/lstate.c
index f48f59e3..059390fb 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 1.58 2001/03/02 17:27:50 roberto Exp roberto $ 2** $Id: lstate.c,v 1.59 2001/03/07 18:09:25 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -90,7 +90,7 @@ static void f_luaopen (lua_State *L, void *ud) {
90} 90}
91 91
92 92
93LUA_API lua_State *lua_open (lua_State *OL, int stacksize) { 93LUA_API lua_State *lua_newthread (lua_State *OL, int stacksize) {
94 struct Sopen so; 94 struct Sopen so;
95 lua_State *L; 95 lua_State *L;
96 if (OL) lua_lock(OL); 96 if (OL) lua_lock(OL);