lua-users home
lua-l archive

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


> I tried enabling api_check(), but it didn't help. The problem seems to
> be that in luaA_indexAcceptable(), [...]

This is a bug. lua_getmetatable should use luaA_index, and not
luaA_indexAcceptable (or else, it should check "obj" before using it).

-- Roberto