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 2.105 2015/02/20 14:27:53 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 2.106 2015/03/03 19:53:13 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 | */ |
@@ -546,7 +546,7 @@ const TValue *luaH_get (Table *t, const TValue *key) { | |||
546 | lua_Integer k; | 546 | lua_Integer k; |
547 | if (luaV_tointeger(key, &k, 0)) /* index is int? */ | 547 | if (luaV_tointeger(key, &k, 0)) /* index is int? */ |
548 | return luaH_getint(t, k); /* use specialized version */ | 548 | return luaH_getint(t, k); /* use specialized version */ |
549 | /* else go through */ | 549 | /* else *//* FALLTHROUGH */ |
550 | } | 550 | } |
551 | default: { | 551 | default: { |
552 | Node *n = mainposition(t, key); | 552 | Node *n = mainposition(t, key); |