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.2 2004/03/26 14:02:41 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 2.3 2004/04/30 20:13:38 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 | */ |
@@ -375,7 +375,7 @@ static TValue *newkey (lua_State *L, Table *t, const TValue *key) { | |||
375 | } | 375 | } |
376 | } | 376 | } |
377 | setobj2t(L, gkey(mp), key); | 377 | setobj2t(L, gkey(mp), key); |
378 | luaC_barrier(L, t, key); | 378 | luaC_barriert(L, t, key); |
379 | lua_assert(ttisnil(gval(mp))); | 379 | lua_assert(ttisnil(gval(mp))); |
380 | for (;;) { /* correct `firstfree' */ | 380 | for (;;) { /* correct `firstfree' */ |
381 | if (ttisnil(gkey(t->firstfree))) | 381 | if (ttisnil(gkey(t->firstfree))) |