Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2009-08-28 | ensures that argument 'mode' to 'io.open' matches "[rwa]%+?b?", to | Roberto Ierusalimschy | 1 | -2/+11 | |
avoid passing invalid modes to 'fopen'. | |||||
2009-08-26 | better machinery to test continuations in the C API | Roberto Ierusalimschy | 1 | -1/+24 | |
2009-08-25 | correct way to check arguments to 'strftime' | Roberto Ierusalimschy | 2 | -23/+41 | |
2009-08-10 | test for 'fs' being NULL at the end of 'close_func' is useless ('fs' | Roberto Ierusalimschy | 1 | -2/+4 | |
cannot be NULl and the new ls->fs can only be NULL when the token is EOS, in which case anchor_token has no effect). | |||||
2009-08-10 | avoid an unprotected call to 'lua_tostring' which theoretically may | Roberto Ierusalimschy | 1 | -2/+14 | |
cause a panicked exit | |||||
2009-08-10 | "stange numbers" (-0 and NaN) also go to the constant table (as | Roberto Ierusalimschy | 1 | -16/+29 | |
strings with their binary representation). Therefore, constant folding may produce these results. | |||||
2009-08-07 | luaH_[gs]etnum renamed to luaH_[gs]etint (as they only accept integers, | Roberto Ierusalimschy | 1 | -9/+9 | |
not generic numbers). | |||||
2009-08-07 | luaH_[gs]etnum renamed to luaH_[gs]etint (as they only accept integers, | Roberto Ierusalimschy | 4 | -10/+10 | |
not generic numbers) | |||||
2009-08-05 | "But" -> "Bug" (misspelling) | Roberto Ierusalimschy | 1 | -5/+5 | |
2009-08-04 | 'debug.getfenv' does not check whether it has an argument | Roberto Ierusalimschy | 1 | -2/+21 | |
2009-08-04 | small bug: debug.getfenv should check whether it has an argument | Roberto Ierusalimschy | 1 | -1/+2 | |
2009-08-04 | 'collectgarbage"count"' returns a second argument with the count%1024. | Roberto Ierusalimschy | 1 | -2/+3 | |
2009-07-16 | bug: stack must be cleared until its end (including extra size) + | Roberto Ierusalimschy | 1 | -26/+9 | |
control of stack size moved to 'ldo.c' | |||||
2009-07-15 | tail calls do not need to move whole new frame down, only its slice | Roberto Ierusalimschy | 1 | -8/+12 | |
up to last parameter (the rest has not been used yet) | |||||
2009-07-15 | new macro 'getproto' | Roberto Ierusalimschy | 3 | -7/+8 | |
2009-07-15 | detail (comment: 'correspoding' -> 'corresponding') | Roberto Ierusalimschy | 1 | -2/+2 | |
2009-07-15 | 'index2adr' -> 'index2addr' (correct spelling) | Roberto Ierusalimschy | 1 | -40/+40 | |
2009-07-15 | avoid using 'UNUSED' (not defined outside the kernel) | Roberto Ierusalimschy | 1 | -5/+5 | |
2009-07-15 | 'luaL_tolstring' uses 'lua_tolstring' instead of 'lua_tostring' and | Roberto Ierusalimschy | 1 | -5/+2 | |
'lua_objlen' | |||||
2009-07-15 | calls with LUA_MULTRET may leave no free slots in the stack | Roberto Ierusalimschy | 2 | -2/+5 | |
2009-07-15 | new way to control stack overflow, controling only total size of the stack | Roberto Ierusalimschy | 10 | -78/+100 | |
2009-07-08 | new definition for 'luaD_checkstack' to avoid possible overflows | Roberto Ierusalimschy | 1 | -4/+3 | |
2009-07-08 | errors in 'resume' should be all protected | Roberto Ierusalimschy | 1 | -5/+9 | |
2009-07-02 | smart use of varargs may create functions that return too | Roberto Ierusalimschy | 1 | -2/+22 | |
many arguments and overflow the stack of C functions. | |||||
2009-07-01 | BUG: 'luaV_settable' may invalidate a reference to a table and try | Roberto Ierusalimschy | 1 | -5/+46 | |
to reuse it. | |||||
2009-07-01 | bug: 'luaV_settable' may invalidate a reference to a table and try | Roberto Ierusalimschy | 1 | -3/+6 | |
to reuse it. |