lua-users home
lua-l archive

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


Am 23.10.2014 um 13:13 schröbte Luiz Henrique de Figueiredo:
Lua 5.3.0 (beta) is now available for testing at
	http://www.lua.org/work/lua-5.3.0-beta.tar.gz


All feedback welcome. Thanks.

In `lua.h` `lua_tounsignedx` is defined as

#define lua_tounsignedx(L,i,is) ((lua_Integer)lua_tointegerx(L,i,is))

I think that should be

#define lua_tounsignedx(L,i,is) ((lua_Unsigned)lua_tointegerx(L,i,is))

--lhf


Philipp