Removed dependency on lua_rotate() for compatibility with Lua 5.1

This commit is contained in:
Bruce Hill 2018-07-22 00:19:24 -07:00
parent 2320f87324
commit 2b64555e1c

View File

@ -257,8 +257,9 @@ static int Lcreate_instance(lua_State *L)
int num_args = lua_gettop(L)-1;
lua_getfield(L, 1, "__new");
if (! lua_isnil(L, -1)) {
lua_insert(L, 2); // move __new
lua_pushvalue(L, 1);
lua_rotate(L, 2, 2);
lua_insert(L, 3); // make cls the first argument to __new
lua_call(L, num_args+1, LUA_MULTRET);
} else {
lua_pop(L, 1);