lua-users home
lua-l archive

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


> In general, should I always recompile any C modules I'm using against a 
> new version of Lua?

Yes! Lua tries to be source compatible, not binary compatible. Each
new version may implement old functions as macros. See lua_open and
lua_newtable in 5.1, for instance.
--lhf