lua-users home
lua-l archive

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


> However, it dawned on me that this could be a 5.3 bug. Is that a
> possibility, or is it normal for 2 functions to be the same reference, and
> then for a garbage collection cycle to change that?

I doubt that is happening. Two equal functions will be equal forever.

(What can happen (and is happening) is for the same code sometimes
create two equal functions and sometimes create two different ones.)

-- Roberto