Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | detail | Roberto Ierusalimschy | 2006-10-10 | 1 | -6/+6 | |
* | avoid using index 0 for free list of references (because it is not | Roberto Ierusalimschy | 2006-09-25 | 1 | -2/+8 | |
* | detail | Roberto Ierusalimschy | 2006-09-22 | 2 | -3/+5 | |
* | small optimization for ""..x | Roberto Ierusalimschy | 2006-09-19 | 1 | -3/+7 | |
* | avoid local "pc" in interpreter loop (tricky optimization with no real gain) | Roberto Ierusalimschy | 2006-09-19 | 4 | -51/+48 | |
* | bug: os.date throws error when result is the empty string | Roberto Ierusalimschy | 2006-09-19 | 2 | -6/+26 | |
* | bug: string.format("%") reads past the string | Roberto Ierusalimschy | 2006-09-18 | 2 | -2/+56 | |
* | behavior of 'strchr(x, 0)' is ill defined. | Roberto Ierusalimschy | 2006-09-18 | 1 | -2/+2 | |
* | 'lua_strlen' is for compatibility only | Roberto Ierusalimschy | 2006-09-18 | 5 | -14/+14 | |
* | details | Roberto Ierusalimschy | 2006-09-14 | 4 | -13/+13 | |
* | little better error messages for internal arrays overflows | Roberto Ierusalimschy | 2006-09-14 | 3 | -10/+9 | |
* | avoid trailing white spaces | Roberto Ierusalimschy | 2006-09-11 | 20 | -65/+65 | |
* | 'coroutine.running' should return nil (instead of nothing) for main thread | Roberto Ierusalimschy | 2006-09-11 | 1 | -4/+3 | |
* | avoid "too complex" conditional expression (some compilers get confused...) | Roberto Ierusalimschy | 2006-09-11 | 1 | -3/+3 | |
* | no more compatibility option for long strings | Roberto Ierusalimschy | 2006-08-30 | 2 | -29/+2 | |
* | BUG: there is only one C stack, so nCcalls must be global | Roberto Ierusalimschy | 2006-08-15 | 4 | -21/+32 | |
* | macros luai_num* take a state L (when available) as argument, to allow | Roberto Ierusalimschy | 2006-08-07 | 4 | -38/+38 | |
* | wrong message error in some cases involving closures | Roberto Ierusalimschy | 2006-08-07 | 2 | -4/+49 | |
* | math.log now accepts an optional base | Roberto Ierusalimschy | 2006-08-07 | 1 | -2/+5 | |
* | comment | Roberto Ierusalimschy | 2006-08-04 | 1 | -2/+2 | |
* | details | Roberto Ierusalimschy | 2006-07-14 | 1 | -6/+6 | |
* | bugs now are against 5.1.1 | Roberto Ierusalimschy | 2006-07-13 | 1 | -0/+7 | |
* | bug: wrong limit for list constructors | Roberto Ierusalimschy | 2006-07-12 | 2 | -2/+34 | |
* | emergency garbage collector (core forces a GC when allocation fails) | Roberto Ierusalimschy | 2006-07-11 | 19 | -153/+190 | |
* | small bug: should not use string after popping it | Roberto Ierusalimschy | 2006-07-03 | 1 | -3/+4 | |
* | detail | Roberto Ierusalimschy | 2006-06-23 | 1 | -3/+5 | |
* | details | Roberto Ierusalimschy | 2006-06-22 | 6 | -25/+29 | |
* | detailsv5.1.1 | Roberto Ierusalimschy | 2006-06-09 | 1 | -1/+2 | |
* | explicit test for common error (due to compatibility issue) | Roberto Ierusalimschy | 2006-06-07 | 1 | -1/+4 | |
* | BUG: debug hooks may get wrong when mixed with coroutines | Roberto Ierusalimschy | 2006-06-05 | 2 | -3/+43 | |
* | small simplifications | Roberto Ierusalimschy | 2006-06-05 | 2 | -22/+14 | |
* | extra assertion | Roberto Ierusalimschy | 2006-06-05 | 1 | -1/+2 | |
* | details | Roberto Ierusalimschy | 2006-06-05 | 1 | -5/+6 | |
* | new macro LUA_RELEASE | Roberto Ierusalimschy | 2006-06-02 | 4 | -8/+9 | |
* | new version number | Roberto Ierusalimschy | 2006-05-31 | 2 | -4/+4 | |
* | bug: collector did not compensate enough for userdata with finalizers | Roberto Ierusalimschy | 2006-05-24 | 1 | -4/+8 | |
* | subtle problem with the garbage collector | Roberto Ierusalimschy | 2006-05-24 | 1 | -1/+29 | |
* | does not accept garbage after options (e.g., -ixxx) | Roberto Ierusalimschy | 2006-05-24 | 1 | -6/+19 | |
* | only destroy state after running all finalizers | Roberto Ierusalimschy | 2006-05-24 | 1 | -2/+2 | |
* | files should not be operated after fclose, even when fclose fails | Roberto Ierusalimschy | 2006-05-08 | 1 | -3/+3 | |
* | detail (better error message for invalid format) | Roberto Ierusalimschy | 2006-04-26 | 1 | -2/+3 | |
* | details | Roberto Ierusalimschy | 2006-04-26 | 1 | -5/+3 | |
* | lua_dostring/lua_dofile should return any values returned by the chunk | Roberto Ierusalimschy | 2006-04-12 | 2 | -3/+28 | |
* | BUG: option '%q' for string.format does not handle '\r' correctly | Roberto Ierusalimschy | 2006-04-12 | 2 | -2/+52 | |
* | environment variable names should be configurable | Roberto Ierusalimschy | 2006-04-10 | 3 | -9/+31 | |
* | detail | Roberto Ierusalimschy | 2006-03-23 | 1 | -3/+3 | |
* | BUG: luaL_checkudata may show wrong error message | Roberto Ierusalimschy | 2006-03-21 | 2 | -6/+50 | |
* | BUG: should copy the union, not (some of) its fields | Roberto Ierusalimschy | 2006-03-21 | 2 | -8/+48 | |
* | unused macro | Roberto Ierusalimschy | 2006-03-21 | 1 | -2/+1 | |
* | bug in Lua 4.0.2: weak tables that survive one collection are never collected | Roberto Ierusalimschy | 2006-03-20 | 1 | -2/+35 |