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 /ltm.h | |
parent | 3d0b5edfe4df7ec54d6885b6b6ce917faddf6661 (diff) | |
download | lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.gz lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.bz2 lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.zip |
no more nil-in-table
Diffstat (limited to 'ltm.h')
-rw-r--r-- | ltm.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.h,v 2.33 2018/02/23 13:13:31 roberto Exp roberto $ | 2 | ** $Id: ltm.h,v 2.34 2018/02/27 17:48:28 roberto Exp roberto $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -19,8 +19,6 @@ | |||
19 | typedef enum { | 19 | typedef enum { |
20 | TM_INDEX, | 20 | TM_INDEX, |
21 | TM_NEWINDEX, | 21 | TM_NEWINDEX, |
22 | TM_UNDEF, | ||
23 | TM_ISDEF, | ||
24 | TM_GC, | 22 | TM_GC, |
25 | TM_MODE, | 23 | TM_MODE, |
26 | TM_LEN, | 24 | TM_LEN, |
@@ -91,7 +89,5 @@ LUAI_FUNC void luaT_adjustvarargs (lua_State *L, int nfixparams, | |||
91 | LUAI_FUNC void luaT_getvarargs (lua_State *L, struct CallInfo *ci, | 89 | LUAI_FUNC void luaT_getvarargs (lua_State *L, struct CallInfo *ci, |
92 | StkId where, int wanted); | 90 | StkId where, int wanted); |
93 | 91 | ||
94 | LUAI_FUNC int luaT_keydef (lua_State *L, TValue *obj, TValue *key, int remove); | ||
95 | |||
96 | 92 | ||
97 | #endif | 93 | #endif |