summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* logic for checking mode for 'fopen' moved to macro 'lua_checkmode'v5.2.2Roberto Ierusalimschy2013-03-211-10/+11
|
* detail (avoid unnecessary "unconst" in cast)Roberto Ierusalimschy2013-03-211-2/+2
|
* detail (error message)Roberto Ierusalimschy2013-03-201-3/+2
|
* detail (avoiding warnings)Roberto Ierusalimschy2013-03-191-3/+5
|
* macro 'lua_checkmode' + typos in commentsRoberto Ierusalimschy2013-03-161-2/+10
|
* typos in commentsRoberto Ierusalimschy2013-03-166-13/+13
|
* cast to avoid warningsRoberto Ierusalimschy2013-03-151-2/+2
|
* added two more commented warning options (just to know about them)Roberto Ierusalimschy2013-03-151-0/+2
|
* export 'lua_ident' to avoid it being removed by C++ linkerRoberto Ierusalimschy2013-03-151-1/+6
|
* second parameter to 'ldexp' is an integerRoberto Ierusalimschy2013-03-071-2/+2
|
* no need to handle 0 as a special case in 'table.remove'Roberto Ierusalimschy2013-03-071-3/+1
|
* added 'return' (when possible) to calls to error functionsRoberto Ierusalimschy2013-02-213-6/+7
|
* 'l_tg' was renamed to 'l_mathop' and this use was not corrected atRoberto Ierusalimschy2013-02-202-4/+4
| | | | the time
* typo in commentRoberto Ierusalimschy2013-02-201-2/+2
|
* new release number + copyright yearRoberto Ierusalimschy2013-02-191-4/+4
|
* details (5.2 corrected to 5.2.0)Roberto Ierusalimschy2013-02-071-4/+4
|
* better error checking for 'table.insert' and 'table.remove'Roberto Ierusalimschy2013-02-061-10/+12
|
* commentsRoberto Ierusalimschy2013-02-061-3/+6
|
* small improvement in the support of 'float' as lua_NumberRoberto Ierusalimschy2013-01-294-46/+48
|
* detailRoberto Ierusalimschy2013-01-082-5/+4
|
* added some commentsRoberto Ierusalimschy2012-12-051-4/+4
|
* added commentRoberto Ierusalimschy2012-12-051-2/+3
|
* missing brackets in 'if' body (no bug, only 'luaC_checkfinalizer' isRoberto Ierusalimschy2012-12-051-2/+3
| | | | called to do nothing)
* Bug: load/loadfile returns wrong result when given an environmentRoberto Ierusalimschy2012-12-032-19/+74
| | | | for a binary chunk with no upvalues
* avoids warning with 'clang' + comment explaining macroRoberto Ierusalimschy2012-11-141-4/+11
|
* removed unreacheable 'lua_unlock'Roberto Ierusalimschy2012-11-041-2/+2
|
* more precise control for GC pause (based on threshold)Roberto Ierusalimschy2012-10-191-19/+27
|
* error message for 'bad self' includes original 'extramsg'Roberto Ierusalimschy2012-10-191-2/+3
|
* error message in 'os.rename' does not include file name, because errorRoberto Ierusalimschy2012-10-191-2/+2
| | | | may be caused both by 'fromname' or 'toname'
* API functions get acceptable indices except when not possible (whenRoberto Ierusalimschy2012-10-191-15/+16
| | | | | they modify the value at that index) + new macro 'ispseudo' + specific test 'api_checkstackindex'
* open upvalues cannot be old if thread is not old; when thread is old,Roberto Ierusalimschy2012-10-032-6/+4
| | | | | their list is not traversed anymore, and therefore can contain dead elements.
* removed commented-out line (for debugging)Roberto Ierusalimschy2012-10-031-2/+1
|
* cast to avoid warning in some compilers (size_t x unsigned int)Roberto Ierusalimschy2012-10-021-2/+2
|
* cast in 'luai_makeseed' now casts to needed typeRoberto Ierusalimschy2012-10-021-2/+2
|
* macro 'lua_number2unsigned' also needs proper definition ifRoberto Ierusalimschy2012-10-021-2/+2
| | | | lua_Number is float
* LUA_CORE condition removed from definition of some 'tricks' (as itRoberto Ierusalimschy2012-10-012-7/+6
| | | | | controlled only a few other defines) + MS_ASMTRICK renamed to LUA_MSASMTRICK
* 'pcall' may not restore previous error function whenRoberto Ierusalimschy2012-10-011-2/+97
| | | | | inside coroutines + Check for garbage collector in function calls does not cover all paths
* BUG: 'pcall' may not restore previous error function whenRoberto Ierusalimschy2012-10-011-2/+6
| | | | inside coroutines
* pops the string from 'get_prompt' only after using itRoberto Ierusalimschy2012-09-291-3/+4
|
* typo in commentRoberto Ierusalimschy2012-09-241-2/+2
|
* detailRoberto Ierusalimschy2012-09-111-3/+3
|
* no more macro 'changenvalue'Roberto Ierusalimschy2012-09-112-7/+4
|
* small bug: generational mode is always in 'propagate' mode onlyRoberto Ierusalimschy2012-09-112-10/+21
| | | | | outside the collector: during collection of course it must go to other modes.
* more regularity for field 'fix'Roberto Ierusalimschy2012-09-111-12/+19
|
* checks garbage collector every time it calls a function (as theRoberto Ierusalimschy2012-08-281-3/+4
| | | | stack can grow and so allocates more memory)
* remove of unecessary luaD_checkstack. (In some cases, C shouldRoberto Ierusalimschy2012-08-165-23/+19
| | | | | ensure stack space; in others, Lua can use the extra slots for temporary values.)
* details (no need to use lua_pushfstring for plain strings)Roberto Ierusalimschy2012-08-161-3/+3
|
* details (remove of some extra spaces)Roberto Ierusalimschy2012-08-144-11/+11
|
* detail (avoid being picky about conversion from 'unsigned char'Roberto Ierusalimschy2012-08-061-2/+2
| | | | to 'int')
* Bug: Some patterns can overflow the C stack, due to recursionRoberto Ierusalimschy2012-07-311-77/+124
| | | | (Took the opportunity to refactor function 'match')