lua_settop
lua_settop(L, top); /* remove function and global table */
lua_settop(L, 2);
lua_settop(L, 2);
lua_settop(L, 3);
lua_settop(L, 2); /* create a 2nd argument if there isn't one */
lua_settop(L, 1);
lua_settop(L, 1);
lua_settop(L, 2);
lua_settop(L, 2); /* make sure there is two arguments */
LUA_API void (lua_settop) (lua_State *L, int idx);
#define lua_pop(L,n) lua_settop(L, -(n)-1)
lua_settop(state, 0);
lua_settop(ri->zri_state, 0);