[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: error in ltablib.c ?
- From: "Julien Patte" <julien.patte@...>
- Date: Fri, 24 Feb 2006 20:59:34 +0100
Hi!
I think that there is a problem in ltablib.c (from lua 5.1 final) at line 141. The line is:
last = luaL_opt(L, luaL_checkint, 4, luaL_getn(L, 1));
'luaL_opt' and 'luaL_checkint' seem to be invalid symbols here; I suppose the correct line is
last = luaL_optint(L, 4, luaL_getn(L, 1));
This problem is kind of obvious though, since the compiler should immediatly raise an error when parsing this...That's why I wonder why I didn't see any message about that before (maybe I missed something else?) :s
Regards,
Julien Patte