lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> In fact instead of three function calls, because lua_pop is defined as
> a macro calling both lua_gettop and lua_settop.

??

  #define lua_pop(L,n)            lua_settop(L, -(n)-1)


-- Roberto