[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Suggestion: lua_popinteger and others
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 25 Apr 2012 14:55:25 -0300
> 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