diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-07 15:15:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-07 15:15:10 -0300 |
commit | c16a35d6696ac995ef6c7b60f251f6821811f50f (patch) | |
tree | 8a25bd8597f46fe7db32cce9efa6668f6b950edc /lua.h | |
parent | 8f837e83b20f3c409ba187765c2bf5aefc111923 (diff) | |
download | lua-c16a35d6696ac995ef6c7b60f251f6821811f50f.tar.gz lua-c16a35d6696ac995ef6c7b60f251f6821811f50f.tar.bz2 lua-c16a35d6696ac995ef6c7b60f251f6821811f50f.zip |
`lua_stackspace' replaced by `lua_checkstack'
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ | 2 | ** $Id: lua.h,v 1.121 2002/02/14 21:40:13 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: info@lua.org | 5 | ** e-mail: info@lua.org |
@@ -109,7 +109,7 @@ LUA_API void lua_pushvalue (lua_State *L, int index); | |||
109 | LUA_API void lua_remove (lua_State *L, int index); | 109 | LUA_API void lua_remove (lua_State *L, int index); |
110 | LUA_API void lua_insert (lua_State *L, int index); | 110 | LUA_API void lua_insert (lua_State *L, int index); |
111 | LUA_API void lua_replace (lua_State *L, int index); | 111 | LUA_API void lua_replace (lua_State *L, int index); |
112 | LUA_API int lua_stackspace (lua_State *L); | 112 | LUA_API int lua_checkstack (lua_State *L, int size); |
113 | 113 | ||
114 | 114 | ||
115 | /* | 115 | /* |