summaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-04-04 11:23:41 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-04-04 11:23:41 -0300
commit03c6a05ec836c3a90a6b8d730120afdad39c092b (patch)
tree31f0bdf82969b1e082e92d7b5dd5d9e1496d64af /ltm.h
parent3d0b5edfe4df7ec54d6885b6b6ce917faddf6661 (diff)
downloadlua-github-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.gz
no more nil-in-table
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/ltm.h b/ltm.h
index 6e961d27..7eb60b4c 100644
--- a/ltm.h
+++ b/ltm.h
@@ -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