lua-users home
lua-l archive

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


https://github.com/lua/lua/blob/89f6a85f034b2535e43e421991098fa05a92cd60/lcode.c#L367

    lua_assert(f->abslineinfo[fs->nabslineinfo].pc = pc);

should be:

    lua_assert(f->abslineinfo[fs->nabslineinfo].pc == pc);

I think.