[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.3.0 (beta) now available
- From: Philipp Janda <siffiejoe@...>
- Date: Sat, 29 Nov 2014 16:21:52 +0100
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