aboutsummaryrefslogtreecommitdiff
path: root/ldo.h (unfollow)
Commit message (Expand)AuthorFilesLines
2014-02-06added proper headers for a standard lib fileRoberto Ierusalimschy1-4/+11
2014-02-06C++ needs casts for arithmetic with enumsRoberto Ierusalimschy1-3/+3
2014-02-06new library: utf8Roberto Ierusalimschy4-6/+244
2014-02-06UTF-8 encoding exported as format '%U' in 'lua_pushfstring'Roberto Ierusalimschy3-21/+37
2014-02-05insertion of ".0" in floats with integer values done by "luaL_tolstring",Roberto Ierusalimschy2-17/+15
2014-02-05still accepts initial '=' for expressions, for compatibility with oldRoberto Ierusalimschy1-2/+5
2014-02-04added support for UTF-8 escapesRoberto Ierusalimschy1-11/+45
2014-01-31simpler way to create messages for errors in escape sequencesRoberto Ierusalimschy2-28/+33
2014-01-27no more 'L' in macros "luai_num*" (several places that use those macrosRoberto Ierusalimschy6-40/+40
2014-01-27commentRoberto Ierusalimschy1-2/+2
2014-01-22larger limit + better error messages for loop detection in inheritanceRoberto Ierusalimschy1-4/+4
2014-01-09added explicit default options to string.pack/unpack functionsRoberto Ierusalimschy1-5/+9
2014-01-08first implementation for string.pack/unpackfloat + try not to assumeRoberto Ierusalimschy1-14/+97
2014-01-05first implementation of string.packint/string.unpackintRoberto Ierusalimschy1-1/+124
2014-01-05'arg' arguments (previously called 'narg', 'nArg', 'numArg', etc.)Roberto Ierusalimschy2-61/+61
2013-12-30first implementation of '<<', '>>', and '~' (bitwise not)Roberto Ierusalimschy15-49/+139
2013-12-18small change in handling of unary operationsRoberto Ierusalimschy1-14/+13
2013-12-18first implementation of bitwise operators '&' (band), '|' (bor),Roberto Ierusalimschy11-47/+122
2013-12-16new order for binary operations (grouping them by type of result)Roberto Ierusalimschy9-35/+41
2013-12-16integer exponentiation with negative exponent is invalidRoberto Ierusalimschy4-30/+32
2013-12-16new "calculator mode"; no need to add '=' to print expressionsRoberto Ierusalimschy1-18/+40
2013-12-13detailsRoberto Ierusalimschy1-17/+13
2013-12-13use goto to implement a tail call in 'reallymarkobject'Roberto Ierusalimschy1-4/+9
2013-12-09'lua_sethook' returns voidRoberto Ierusalimschy2-5/+4
2013-12-04detail ('ttisuserdata' renamed to 'ttisfulluserdata')Roberto Ierusalimschy2-7/+7
2013-11-21details (comments)Roberto Ierusalimschy1-2/+2
2013-11-08new bug: Resuming the running coroutine makes it unyieldableRoberto Ierusalimschy1-2/+32
2013-11-08bug: attempting to resume the running coroutine makes it unyieldableRoberto Ierusalimschy1-2/+3
2013-11-08added patch for last bugRoberto Ierusalimschy1-2/+28
2013-11-08new macro 'luai_userstateclose' (to test it is being called correctly)Roberto Ierusalimschy1-1/+3
2013-11-08bug: should call 'luai_userstateclose' only when 'luai_userstateopen'Roberto Ierusalimschy1-6/+8
2013-10-10"./?/init.lua" added to default pathRoberto Ierusalimschy1-3/+5
2013-10-07detail (changing some names of macros)Roberto Ierusalimschy2-17/+17
2013-09-17CallInfo lists shrinks together with their associated stacksRoberto Ierusalimschy4-6/+29
2013-09-13GC local pause configurableRoberto Ierusalimschy6-35/+41
2013-09-11detail (setmetatable do not need to use a back GC barrier)Roberto Ierusalimschy2-7/+3
2013-09-11type of 'refcount' changed to lu_mem (to ensure there will be noRoberto Ierusalimschy1-2/+2
2013-09-11check for shrinking string table done only at the end of a GC cycleRoberto Ierusalimschy2-8/+11
2013-09-11new names and better order for GC states (sweep first lists thatRoberto Ierusalimschy3-30/+30
2013-09-11threads are kept in a separated GC list, linked after the main threadRoberto Ierusalimschy5-47/+47
2013-09-11detail: 'sweepstep' checks end of phase after calling 'sweeplist', soRoberto Ierusalimschy1-6/+7
2013-09-11objects in list 'tobefnz' have a GC life-cycle like all othersRoberto Ierusalimschy3-17/+21
2013-09-11'luaC_newobj' does not handle special cases; only special caseRoberto Ierusalimschy6-35/+31
2013-09-11more invariants added to memory checkRoberto Ierusalimschy1-3/+4
2013-09-05back to open hashing for the string table (but with a differentRoberto Ierusalimschy5-92/+61
2013-09-04better (and correct!) control of 'maybedead'Roberto Ierusalimschy1-20/+19
2013-09-03local collection now calls finalizersRoberto Ierusalimschy6-80/+144
2013-08-30new GC state to sweep 'localgc' list + small changes in sweep controlRoberto Ierusalimschy5-46/+48
2013-08-30bug (GC can collect long identifier during parser) + change (usingRoberto Ierusalimschy6-46/+47
2013-08-30bug: GC can collect a long string still in use during parserRoberto Ierusalimschy1-2/+37