[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: lua_xmove
- From: Mike Pall <mikelu-0604@...>
- Date: Tue, 11 Apr 2006 22:25:58 +0200
Hi,
Marius Gheorghe wrote:
> Does any one know whether it is safe to use lua_xmove() when both the source
> and destination states represent the same state and, if it is safe, does
> this operation leave the stack unchanged (as intuitively expected)?
LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) {
...
if (from == to) return;
...
Bye,
Mike