On 2008-03-18, Jarrod Lowe <[EMAIL PROTECTED]> wrote: > $ lua -v > Lua 5.1.3 Copyright (C) 1994-2008 Lua.org, PUC-Rio > > Is Ion not compatible with this version of lua?
""" 7 - Incompatibilities with the Previous Version Here we list the incompatibilities that may be found when moving a program from Lua 5.0 to Lua 5.1. You can avoid most of the incompatibilities compiling Lua with appropriate options (see file luaconf.h). However, all these compatibility options will be removed in the next version of Lua. ... * Function string.gfind was renamed string.gmatch. (Option LUA_COMPAT_GFIND) """ file://localhost/usr/share/doc/lua5.1-doc/doc/manual.html (Or the same doc from web, the but lua.org is dead-slow, so I can't be bothered accessing it.) So it should bejust your compile that is incompatible. Or have they changed the compile options between 5.1.2 and 5.1.3? Which would be fucking braindead. (I can get them completely removing gfind for 5.2, but not changing options between 5.1 releases. Or just disabling it by default in the whole 5.1 series -- which would've made discovery of this change easier -- but net between 5.1 releases.) -- Tuomo
