aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index 2b51deab..11e5b555 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.65 2000/08/31 21:01:43 roberto Exp roberto $ 2** $Id: lua.h,v 1.66 2000/09/05 19:33:32 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -34,7 +34,7 @@
34#define LUA_MULTRET (-1) 34#define LUA_MULTRET (-1)
35 35
36 36
37#define LUA_MINSTACK 16 37#define LUA_MINSTACK 20
38 38
39 39
40/* error codes for lua_do* */ 40/* error codes for lua_do* */
@@ -52,7 +52,7 @@ typedef int (*lua_CFunction) (lua_State *L);
52/* 52/*
53** state manipulation 53** state manipulation
54*/ 54*/
55lua_State *lua_newstate (int stacksize); 55lua_State *lua_open (int stacksize);
56void lua_close (lua_State *L); 56void lua_close (lua_State *L);
57 57
58 58