Re: setfenv/getfenv
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: setfenv/getfenv
- From: Roberto Ierusalimschy <roberto@...>
- Date: 2010年1月12日 14:16:13 -0200
> Will getfenv/setfenv still be supported on userdata objects? I use
> this feature in the lua-ev[1] extension so that objects are properly
> garbage collected.
In Lua 5.1 you already cannot use getfenv/setfenv over userdata objects.
In C, lua_getfenv and lua_setfenv will not change at all.
-- Roberto