avoid clashing names between macros and fields

This commit is contained in:
Roberto Ierusalimschy
2001-11-29 18:21:46 -02:00
parent 72659a0605
commit fca0a12e23
3 changed files with 7 additions and 7 deletions

View File

@@ -277,7 +277,7 @@ static int table_query (lua_State *L) {
}
else
lua_pushstring(L, "<undef>");
luaA_pushobject(L, &t->node[i].val);
luaA_pushobject(L, val(&t->node[i]));
if (t->node[i].next)
lua_pushnumber(L, t->node[i].next - t->node);
else