From 30f6e658d2071d23309e4ac70dd8ec199049aff4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 11 Sep 2000 16:42:57 -0300 Subject: `lua_newstate' renamed to `lua_open' --- lua.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 2b51deab..11e5b555 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.65 2000/08/31 21:01:43 roberto Exp roberto $ +** $Id: lua.h,v 1.66 2000/09/05 19:33:32 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil ** e-mail: lua@tecgraf.puc-rio.br @@ -34,7 +34,7 @@ #define LUA_MULTRET (-1) -#define LUA_MINSTACK 16 +#define LUA_MINSTACK 20 /* error codes for lua_do* */ @@ -52,7 +52,7 @@ typedef int (*lua_CFunction) (lua_State *L); /* ** state manipulation */ -lua_State *lua_newstate (int stacksize); +lua_State *lua_open (int stacksize); void lua_close (lua_State *L); -- cgit v1.2.3-55-g6feb