Switched lua_absindex() to lua_gettop() for compatibility with 5.1

This commit is contained in:
Bruce Hill 2018-02-14 14:22:47 -08:00
parent 02f708cb04
commit 69631d8d56

View File

@ -353,15 +353,15 @@ static int Ltostring(lua_State *L)
lua_pushvalue(L, 1);
// Stack: [mt, buckets, bucket, inst_udata]
lua_rawget(L, -2);
int inst_table_index = lua_absindex(L, -1);
int inst_table_index = lua_gettop(L);
// Stack: [mt, buckets, bucket, inst_table]
lua_getglobal(L, "tostring");
// Stack: [mt, buckets, bucket, inst_table, tostring]
int tostring_index = lua_absindex(L, -1);
int tostring_index = lua_gettop(L);
lua_getfield(L, -5, "__fields");
// Stack: [mt, buckets, bucket, inst_table, tostring, fields]
int num_fields = lua_objlen(L, -1);
int fields_index = lua_absindex(L, -1);
int fields_index = lua_gettop(L);
int needs_comma = 0;
for (int i = 1; i <= num_fields; i++) {