diff options
Diffstat (limited to 'ltable.c')
-rw-r--r-- | ltable.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.c,v 1.112 2002/07/01 19:31:10 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 1.113 2002/07/02 17:54:23 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 | */ |
@@ -80,7 +80,7 @@ Node *luaH_mainposition (const Table *t, const TObject *key) { | |||
80 | return hashstr(t, tsvalue(key)); | 80 | return hashstr(t, tsvalue(key)); |
81 | case LUA_TBOOLEAN: | 81 | case LUA_TBOOLEAN: |
82 | return hashboolean(t, bvalue(key)); | 82 | return hashboolean(t, bvalue(key)); |
83 | case LUA_TUDATAVAL: | 83 | case LUA_TLIGHTUSERDATA: |
84 | return hashpointer(t, pvalue(key)); | 84 | return hashpointer(t, pvalue(key)); |
85 | case LUA_TUSERDATA: | 85 | case LUA_TUSERDATA: |
86 | return hashpointer(t, uvalue(key)); | 86 | return hashpointer(t, uvalue(key)); |