|
> 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