aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-26 16:28:44 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-26 16:28:44 -0300
commitf67ccfbdeb9595b0549a733d229a02a7c3205ddc (patch)
treeb59a5afc174ac338e23ad58dc564640324ba6b19 /lua.h
parentcfcf2008069fc2d5574e10303dbe4f1ea3188636 (diff)
downloadlua-f67ccfbdeb9595b0549a733d229a02a7c3205ddc.tar.gz
lua-f67ccfbdeb9595b0549a733d229a02a7c3205ddc.tar.bz2
lua-f67ccfbdeb9595b0549a733d229a02a7c3205ddc.zip
no more `lua_getn' function
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 3c650278..6cbf9497 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.142 2002/06/20 20:41:46 roberto Exp roberto $ 2** $Id: lua.h,v 1.143 2002/06/25 19:18:49 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil 4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
5** http://www.lua.org mailto:info@lua.org 5** http://www.lua.org mailto:info@lua.org
@@ -212,7 +212,6 @@ LUA_API void lua_setgcthreshold (lua_State *L, int newthreshold);
212LUA_API int lua_error (lua_State *L); 212LUA_API int lua_error (lua_State *L);
213 213
214LUA_API int lua_next (lua_State *L, int index); 214LUA_API int lua_next (lua_State *L, int index);
215LUA_API int lua_getn (lua_State *L, int index);
216 215
217LUA_API void lua_concat (lua_State *L, int n); 216LUA_API void lua_concat (lua_State *L, int n);
218 217