diff options
Diffstat (limited to 'ltable.c')
-rw-r--r-- | ltable.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.c,v 1.36 2000/03/10 18:37:44 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 1.37 2000/03/27 20:10:21 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 | */ |
@@ -52,12 +52,6 @@ Node *luaH_mainposition (const Hash *t, const TObject *key) { | |||
52 | case TAG_TABLE: | 52 | case TAG_TABLE: |
53 | h = IntPoint(L, avalue(key)); | 53 | h = IntPoint(L, avalue(key)); |
54 | break; | 54 | break; |
55 | case TAG_LPROTO: | ||
56 | h = IntPoint(L, tfvalue(key)); | ||
57 | break; | ||
58 | case TAG_CPROTO: | ||
59 | h = IntPoint(L, fvalue(key)); | ||
60 | break; | ||
61 | case TAG_LCLOSURE: case TAG_CCLOSURE: | 55 | case TAG_LCLOSURE: case TAG_CCLOSURE: |
62 | h = IntPoint(L, clvalue(key)); | 56 | h = IntPoint(L, clvalue(key)); |
63 | break; | 57 | break; |