aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/ltable.h b/ltable.h
index 751e7d64..823940b4 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.h,v 2.12 2009/08/07 16:17:41 roberto Exp roberto $ 2** $Id: ltable.h,v 2.13 2009/11/06 17:07:48 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -15,8 +15,6 @@
15#define gval(n) (&(n)->i_val) 15#define gval(n) (&(n)->i_val)
16#define gnext(n) ((n)->i_key.nk.next) 16#define gnext(n) ((n)->i_key.nk.next)
17 17
18#define key2tval(n) (&(n)->i_key.tvk)
19
20 18
21LUAI_FUNC const TValue *luaH_getint (Table *t, int key); 19LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
22LUAI_FUNC TValue *luaH_setint (lua_State *L, Table *t, int key); 20LUAI_FUNC TValue *luaH_setint (lua_State *L, Table *t, int key);