lua-users home
lua-l archive

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


In other words, since the value is garbage, the entry in the unicity table
has already been cleared in the first phase of the gc cycle, and it is
normal that the __gc metamethod gets nil when trying to retrieve it
(therefore it doen't even have to clear it). Oh well, I guess I'll just have
to change my code and consider this is not an error. It would be a good
thing if your explanation made it in the manual, so that I don't get caught
twice :-)


Thanks for your quick reply.