diff options
Diffstat (limited to 'src/lua5')
| -rw-r--r-- | src/lua5/imlua_aux.c | 6 | ||||
| -rw-r--r-- | src/lua5/imlua_process.c | 6 | 
2 files changed, 10 insertions, 2 deletions
diff --git a/src/lua5/imlua_aux.c b/src/lua5/imlua_aux.c index b26df93..ef972b2 100644 --- a/src/lua5/imlua_aux.c +++ b/src/lua5/imlua_aux.c @@ -2,7 +2,7 @@   * \brief IM Lua 5 Binding   *   * See Copyright Notice in im_lib.h - * $Id: imlua_aux.c,v 1.3 2010/01/21 18:24:22 scuri Exp $ + * $Id: imlua_aux.c,v 1.4 2010/06/10 20:17:40 scuri Exp $   */  #include <memory.h> @@ -27,7 +27,11 @@ int imlua_getn (lua_State *L, int index)  {    int n;    lua_pushstring(L, "table"); +#if LUA_VERSION_NUM > 501 +  lua_pushglobaltable(L); +#else    lua_gettable(L, LUA_GLOBALSINDEX); +#endif    lua_pushstring(L, "getn");    lua_gettable(L, -2);    lua_pushvalue(L, index); diff --git a/src/lua5/imlua_process.c b/src/lua5/imlua_process.c index 79239f0..2e0bb1d 100644 --- a/src/lua5/imlua_process.c +++ b/src/lua5/imlua_process.c @@ -2,7 +2,7 @@   * \brief IM Lua 5 Binding   *   * See Copyright Notice in im_lib.h - * $Id: imlua_process.c,v 1.12 2010/06/07 20:59:32 scuri Exp $ + * $Id: imlua_process.c,v 1.13 2010/06/10 20:17:40 scuri Exp $   */  #include <memory.h> @@ -1805,7 +1805,11 @@ static int imluaProcessMultipleStdDev (lua_State *L)      luaL_argerror(L, 1, "must be a table");    lua_pushstring(L, "table"); +#if LUA_VERSION_NUM > 501 +  lua_pushglobaltable(L); +#else    lua_gettable(L, LUA_GLOBALSINDEX); +#endif    lua_pushstring(L, "getn");    lua_gettable(L, -2);    src_image_count = luaL_checkint(L, -1);  | 
