summaryrefslogtreecommitdiff
path: root/llex.c (unfollow)
Commit message (Expand)AuthorFilesLines
2011-10-24'lua_setglobal/lua_getglobal' implemented as functions to avoidRoberto Ierusalimschy2-9/+28
2011-10-24new functions lua_rawsetp/lua_rawgetpRoberto Ierusalimschy3-18/+45
2011-10-24silly bug in 5.2 beta: assignment conflict code did not test to checkRoberto Ierusalimschy1-17/+20
2011-10-21BUG: parser may collect a prototype while building it.Roberto Ierusalimschy1-2/+23
2011-10-17more macros to try to make NaN trick work with other sizes ofRoberto Ierusalimschy1-17/+39
2011-10-07new type 'l_noret' for function that do not returnRoberto Ierusalimschy6-30/+42
2011-10-07avoid the word 'TRICKLE' in macro name (as it has nothing to doRoberto Ierusalimschy1-8/+9
2011-10-03'luaC_separateudata' renamed to 'separatetobefnz' and called onlyRoberto Ierusalimschy2-12/+10
2011-10-03'luaC_separateudata' called from 'luaC_freeallobjects' + removedRoberto Ierusalimschy1-5/+2
2011-10-03retraverse all gray lists together to avoid traversing some weakRoberto Ierusalimschy1-14/+34
2011-10-03missing 'LUA_CORE' definitionRoberto Ierusalimschy1-1/+4
2011-09-30lint (unused definition)Roberto Ierusalimschy3-13/+3
2011-09-30lint (wrong identation)Roberto Ierusalimschy1-2/+2
2011-09-30lint (unreachable code)Roberto Ierusalimschy2-11/+11
2011-09-30lint (unused macros)Roberto Ierusalimschy1-4/+1
2011-09-30lint (unused struct field)Roberto Ierusalimschy1-2/+1
2011-09-26detail: new macros for non-valid valuesRoberto Ierusalimschy1-12/+13
2011-09-24dead objects are not collectable.Roberto Ierusalimschy3-8/+11
2011-09-24detail about 'trick' function (nil turn it off)Roberto Ierusalimschy1-2/+5
2011-09-24better(?) scheme for cleaning weak tables; all ressurected objectsRoberto Ierusalimschy1-18/+44
2011-09-20detail in extra trace code: total bytes is given by 'gettotalbytes',Roberto Ierusalimschy1-2/+2
2011-09-19avoid clearing ephemeron tables that have nothing to be cleanedRoberto Ierusalimschy1-13/+17
2011-09-15cannot compute 'mainposition' before checking whether key is nilRoberto Ierusalimschy1-2/+3
2011-09-14small bug in if-goto optimization: block must be closed ('leaveblock')Roberto Ierusalimschy1-5/+8
2011-09-13using 'long' versions of 'fseek'/'ftell' when availableRoberto Ierusalimschy1-6/+57
2011-09-13details (and missing 'break's)Roberto Ierusalimschy1-7/+6
2011-09-13upvalue names always can be NULL (if debug info was removed), soRoberto Ierusalimschy1-7/+13
2011-09-13detail (make 'lua_assert' a valid expression even when turned off)Roberto Ierusalimschy1-3/+3
2011-09-12commentRoberto Ierusalimschy1-2/+2
2011-08-30optimization for |if cond then goto|Roberto Ierusalimschy1-18/+37
2011-08-30'luaK_goiffalse' exportedRoberto Ierusalimschy2-3/+4
2011-08-25cleaner code for 'if' constructRoberto Ierusalimschy1-20/+14
2011-08-23detail: centralize all tests for Windows on variable 'LUA_WIN'Roberto Ierusalimschy1-2/+2
2011-08-23'nCcalls' should be local to each thread, as each thread may have itsRoberto Ierusalimschy7-31/+31
2011-08-17bug: __newindex metamethod may not work if metatable is its ownRoberto Ierusalimschy1-2/+29
2011-08-17bug: __newindex metamethod may not work if metatable is its ownRoberto Ierusalimschy4-26/+44
2011-08-17new option '-E' to avoid environment variablesRoberto Ierusalimschy1-5/+25
2011-08-15comments about use of 'luaH_set'Roberto Ierusalimschy2-2/+6
2011-08-12new implementation for 'getobjname': first search for relevantRoberto Ierusalimschy1-85/+87
2011-08-11commentRoberto Ierusalimschy1-2/+2
2011-08-09no more 'luaH_setstr (used only once) + 'luaH_setint' receives valueRoberto Ierusalimschy7-34/+25
2011-08-09'string.format' checks whether values for integer formats areRoberto Ierusalimschy1-5/+14
2011-08-04detail (using array instead of several variables to keep track ofRoberto Ierusalimschy1-10/+17
2011-08-02better error message when trying to open filesRoberto Ierusalimschy1-6/+4
2011-07-28detail: factoring in common code for opening files and checking forRoberto Ierusalimschy1-16/+14
2011-07-27reducing even more use of C stack by the parser: struct 'FuncState'Roberto Ierusalimschy2-19/+18
2011-07-27no more field 'L' in 'FuncState'Roberto Ierusalimschy1-7/+7
2011-07-27tonumber: base 10 is not special, no base isRoberto Ierusalimschy1-8/+10
2011-07-27refuse things like 'inf' or 'Nan' as numeralsRoberto Ierusalimschy1-4/+6
2011-07-25'M_IX86' -> '_M_IX86'Roberto Ierusalimschy1-2/+2