|
> 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