diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-04-04 11:23:41 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-04-04 11:23:41 -0300 |
commit | 03c6a05ec836c3a90a6b8d730120afdad39c092b (patch) | |
tree | 31f0bdf82969b1e082e92d7b5dd5d9e1496d64af /lua.h | |
parent | 3d0b5edfe4df7ec54d6885b6b6ce917faddf6661 (diff) | |
download | lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.gz lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.bz2 lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.zip |
no more nil-in-table
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.344 2018/03/05 14:15:32 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.345 2018/03/16 15:33:34 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -331,9 +331,6 @@ LUA_API size_t (lua_stringtonumber) (lua_State *L, const char *s); | |||
331 | LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); | 331 | LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); |
332 | LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); | 332 | LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); |
333 | 333 | ||
334 | LUA_API void (lua_removekey) (lua_State *L, int idx); | ||
335 | LUA_API int (lua_keyin) (lua_State *L, int idx); | ||
336 | |||
337 | 334 | ||
338 | /* | 335 | /* |
339 | ** {============================================================== | 336 | ** {============================================================== |