diff options
Diffstat (limited to 'im/src/lua5/imlua_aux.c')
-rwxr-xr-x | im/src/lua5/imlua_aux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/im/src/lua5/imlua_aux.c b/im/src/lua5/imlua_aux.c index e472dca..b26df93 100755 --- a/im/src/lua5/imlua_aux.c +++ b/im/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.2 2009/08/04 21:35:26 scuri Exp $ + * $Id: imlua_aux.c,v 1.3 2010/01/21 18:24:22 scuri Exp $ */ #include <memory.h> @@ -46,7 +46,7 @@ int imlua_newarrayint (lua_State *L, int *value, int count, int start) lua_newtable(L); for (i = 0; i < count; i++) { - lua_pushnumber(L, value[i]); + lua_pushinteger(L, value[i]); lua_rawseti(L, -2, i+start); } return 1; |