Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Detail in the manual (method 'file:setvbuf') | Roberto Ierusalimschy | 2019-08-12 | 1 | -16/+8 |
* | Details | Roberto Ierusalimschy | 2019-08-01 | 2 | -8/+13 |
* | Correction in the documentation of 'io.lines' | Roberto Ierusalimschy | 2019-07-31 | 2 | -7/+5 |
* | Tracebacks recognize metamethods '__close' | Roberto Ierusalimschy | 2019-07-31 | 2 | -4/+20 |
* | To-be-closed variables must be closed on initialization | Roberto Ierusalimschy | 2019-07-31 | 6 | -41/+70 |
* | Fixed test in 'main.lua' | Roberto Ierusalimschy | 2019-07-30 | 1 | -7/+10 |
* | Change in the syntax of attributes | Roberto Ierusalimschy | 2019-07-30 | 11 | -102/+103 |
* | Change in the handling of 'L->top' when calling metamethods | Roberto Ierusalimschy | 2019-07-26 | 10 | -29/+75 |
* | Bug: 'Vardesc' array can be reallocated in 'localstat' | Roberto Ierusalimschy | 2019-07-26 | 1 | -12/+15 |
* | Small corrections when setting 'L->top' | Roberto Ierusalimschy | 2019-07-25 | 4 | -6/+17 |
* | Some improvements in date/time functions | Roberto Ierusalimschy | 2019-07-24 | 2 | -41/+100 |
* | Fixed bug in 'string.format' with option '%f' | Roberto Ierusalimschy | 2019-07-23 | 2 | -8/+12 |
* | Do not collect open upvalues | Roberto Ierusalimschy | 2019-07-22 | 4 | -14/+11 |
* | 'math.randomseed' always returns the two seed components | Roberto Ierusalimschy | 2019-07-19 | 3 | -11/+15 |
* | Avoid using addresses of static variables as unique keys | Roberto Ierusalimschy | 2019-07-19 | 3 | -16/+17 |
* | Fixed bug for emergency collection in upvalue creation | Roberto Ierusalimschy | 2019-07-19 | 3 | -8/+10 |
* | Tag LUA_TUPVALTBC replaced by a flag | Roberto Ierusalimschy | 2019-07-19 | 5 | -18/+13 |
* | Some details in 'lmem.c' and 'lgc.c' | Roberto Ierusalimschy | 2019-07-19 | 2 | -27/+42 |
* | Details | Roberto Ierusalimschy | 2019-07-18 | 3 | -25/+17 |
* | Reviving HARDMEMTESTS | Roberto Ierusalimschy | 2019-07-18 | 4 | -15/+35 |
* | Small bug with stack reallocation | Roberto Ierusalimschy | 2019-07-18 | 2 | -7/+9 |
* | 'math.randomseed()' returns the seeds it used | Roberto Ierusalimschy | 2019-07-17 | 4 | -7/+27 |
* | Calls 'luaF_close' in 'lua_settop' only when needed | Roberto Ierusalimschy | 2019-07-17 | 1 | -5/+7 |
* | Fixed small issue with constant propagation | Roberto Ierusalimschy | 2019-07-17 | 2 | -7/+21 |
* | New kind of expression VKSTR | Roberto Ierusalimschy | 2019-07-17 | 5 | -18/+54 |
* | Micro optimization in OP_RETURN and OP_TAILCALL | Roberto Ierusalimschy | 2019-07-16 | 3 | -15/+13 |
* | '__close' method may be called again in case of error | Roberto Ierusalimschy | 2019-07-16 | 3 | -22/+32 |
* | Avoid setting the stack top below upvalues to be closed | Roberto Ierusalimschy | 2019-07-16 | 3 | -9/+13 |
* | Unification of size representation in OP_NEWTABLE and OP_SETLIST | Roberto Ierusalimschy | 2019-07-15 | 6 | -72/+80 |
* | Reordering of instructions in the main loop | Roberto Ierusalimschy | 2019-07-12 | 1 | -44/+44 |
* | OP_NEWTABLE keeps exact size of arrays | Roberto Ierusalimschy | 2019-07-12 | 10 | -88/+67 |
* | First implementation of constant propagation | Roberto Ierusalimschy | 2019-07-12 | 12 | -119/+249 |
* | Details | Roberto Ierusalimschy | 2019-07-10 | 3 | -13/+13 |
* | Towards constant propagation | Roberto Ierusalimschy | 2019-07-10 | 3 | -42/+87 |
* | New implementation for constants | Roberto Ierusalimschy | 2019-07-09 | 8 | -131/+125 |
* | Details (typos in comments) | Roberto Ierusalimschy | 2019-07-05 | 9 | -19/+19 |
* | Local attributes can be used in list of local variables | Roberto Ierusalimschy | 2019-07-03 | 3 | -81/+103 |
* | First take on constant propagation | Roberto Ierusalimschy | 2019-07-01 | 4 | -26/+73 |
* | Methods separated from metamethods in 'io' | Roberto Ierusalimschy | 2019-07-01 | 1 | -10/+20 |
* | Small changes around C-stack limit | Roberto Ierusalimschy | 2019-06-26 | 4 | -10/+24 |
* | '__call' metamethod can be any callable object | Roberto Ierusalimschy | 2019-06-25 | 2 | -14/+31 |
* | A few more tests for table access in the API | Roberto Ierusalimschy | 2019-06-25 | 2 | -1/+63 |
* | Added script 'packtests' to the project | Roberto Ierusalimschy | 2019-06-21 | 1 | -0/+52 |
* | Details in tests | Roberto Ierusalimschy | 2019-06-21 | 2 | -18/+10 |
* | Structure 'Vardesc' does not need a 'name' field | Roberto Ierusalimschy | 2019-06-21 | 2 | -13/+13 |
* | Cleaning macros in 'luaV_execute' | Roberto Ierusalimschy | 2019-06-21 | 1 | -6/+14 |
* | Fixed bug [5.4 alpha] for errors in finalizers | Roberto Ierusalimschy | 2019-06-21 | 1 | -4/+4 |
* | New function 'setCstacklimit' | Roberto Ierusalimschy | 2019-06-18 | 9 | -12/+149 |
* | Revamp around 'L->nCcalls' count | Roberto Ierusalimschy | 2019-06-12 | 4 | -51/+80 |
* | Detail in the manual | Roberto Ierusalimschy | 2019-06-10 | 1 | -5/+6 |