From cb49b088b61b75b905663a58a2c545de1ffea13a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 9 Mar 2001 15:05:05 -0300 Subject: old signature for lua_open --- lstate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.c') diff --git a/lstate.c b/lstate.c index f48f59e3..059390fb 100644 --- a/lstate.c +++ b/lstate.c @@ -1,5 +1,5 @@ /* -** $Id: lstate.c,v 1.58 2001/03/02 17:27:50 roberto Exp roberto $ +** $Id: lstate.c,v 1.59 2001/03/07 18:09:25 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -90,7 +90,7 @@ static void f_luaopen (lua_State *L, void *ud) { } -LUA_API lua_State *lua_open (lua_State *OL, int stacksize) { +LUA_API lua_State *lua_newthread (lua_State *OL, int stacksize) { struct Sopen so; lua_State *L; if (OL) lua_lock(OL); -- cgit v1.2.3-55-g6feb