no more nil-in-table

This commit is contained in:
Roberto Ierusalimschy
2018-04-04 11:23:41 -03:00
parent 3d0b5edfe4
commit 03c6a05ec8
16 changed files with 23 additions and 172 deletions

6
ltm.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: ltm.h,v 2.33 2018/02/23 13:13:31 roberto Exp roberto $
** $Id: ltm.h,v 2.34 2018/02/27 17:48:28 roberto Exp roberto $
** Tag methods
** See Copyright Notice in lua.h
*/
@@ -19,8 +19,6 @@
typedef enum {
TM_INDEX,
TM_NEWINDEX,
TM_UNDEF,
TM_ISDEF,
TM_GC,
TM_MODE,
TM_LEN,
@@ -91,7 +89,5 @@ LUAI_FUNC void luaT_adjustvarargs (lua_State *L, int nfixparams,
LUAI_FUNC void luaT_getvarargs (lua_State *L, struct CallInfo *ci,
StkId where, int wanted);
LUAI_FUNC int luaT_keydef (lua_State *L, TValue *obj, TValue *key, int remove);
#endif