From 69631d8d568d97e7f8e8061657e83b1f659798b5 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 14 Feb 2018 14:22:47 -0800 Subject: [PATCH] Switched lua_absindex() to lua_gettop() for compatibility with 5.1 --- limmutable.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/limmutable.c b/limmutable.c index 72b35d4..5e519d3 100644 --- a/limmutable.c +++ b/limmutable.c @@ -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++) {