aboutsummaryrefslogtreecommitdiff
path: root/bugs (unfollow)
Commit message (Expand)AuthorFilesLines
2010-04-12check memory allows strings to live in the main GC list (it shouldRoberto Ierusalimschy1-1/+2
2010-04-12patterns now accept '\0' as a regular characterRoberto Ierusalimschy1-28/+38
2010-04-09new implementation for Generic Buffer manipulation (using userdata asRoberto Ierusalimschy3-103/+93
2010-04-08keep memory-error message in the global state, so that its useRoberto Ierusalimschy4-9/+13
2010-04-08macro 'eqstr' was being used to compare non-string entitiesRoberto Ierusalimschy1-2/+2
2010-04-05no need to keep "_ENV" name in global state (can be kept in lex state)Roberto Ierusalimschy5-12/+12
2010-04-05new macro 'eqstr'Roberto Ierusalimschy6-14/+25
2010-04-05'lua_pushstring' now uses 'luaS_new'Roberto Ierusalimschy1-3/+11
2010-04-05cannot sweep main thread in sweepstring phaseRoberto Ierusalimschy1-7/+16
2010-04-03'luaS_new' changed from macro to functionRoberto Ierusalimschy2-5/+8
2010-04-02avoid using 'luaS_new' when can use 'luaS_newlstr'Roberto Ierusalimschy1-3/+3
2010-04-02small changes in 'luaO_pushvfstring'Roberto Ierusalimschy1-15/+13
2010-04-02option to return GC to normal (incremental, non generational) modeRoberto Ierusalimschy3-5/+11
2010-04-02added proper code to trace garbage collectionRoberto Ierusalimschy2-8/+24
2010-03-29work related to hooks moved from 'luaV_execute' to 'traceexec'Roberto Ierusalimschy1-5/+5
2010-03-29commentsRoberto Ierusalimschy1-3/+3
2010-03-29global table now is only kept in the registryRoberto Ierusalimschy5-17/+17
2010-03-26no more fenvs!Roberto Ierusalimschy16-170/+78
2010-03-25major collections in generational modeRoberto Ierusalimschy4-23/+39
2010-03-25'mainthread' is not inserted in the 'allgc' list anymore, but sweptRoberto Ierusalimschy4-21/+18
2010-03-24generational mode no longer sweep old objectsRoberto Ierusalimschy2-19/+41
2010-03-24userdata with finalizers are kept in a separated list ('udgc'), insteadRoberto Ierusalimschy5-44/+48
2010-03-23BUG: emergency collector might resize 'strt' (string table) whenRoberto Ierusalimschy1-11/+27
2010-03-22draft version of a generational mode for garbage collection. (Not wellRoberto Ierusalimschy5-35/+70
2010-03-22detail (wrong comment about LUAI_GCPAUSE)Roberto Ierusalimschy1-2/+2
2010-03-22'lua_assert' not visible from librariesRoberto Ierusalimschy1-3/+2
2010-03-19'cpcall' renamed to 'ccall' as it does not do a protected callRoberto Ierusalimschy3-10/+10
2010-03-19'ipairs' is deprecatedRoberto Ierusalimschy1-1/+13
2010-03-19for compatibility only: 'module' changes the first upvalue ofRoberto Ierusalimschy1-4/+8
2010-03-17avoid using function environments in C libraries (as it probably willRoberto Ierusalimschy4-51/+69
2010-03-13'_ENV' name permanently stored in global state for easier accessRoberto Ierusalimschy5-12/+11
2010-03-13must include 'string.h' because a macro uses 'strlen'Roberto Ierusalimschy1-1/+2
2010-03-13better definitions for lua_[gs]etglobal + less uses of ENVIRONINDEXRoberto Ierusalimschy4-23/+28
2010-03-12first version of _ENV; no more global variablesRoberto Ierusalimschy12-124/+52
2010-03-12small optimization in luaL_addlstring (avoid adding chars one by one)Roberto Ierusalimschy1-3/+14
2010-03-08first step towards _ENV: all chunks have an puvalues _ENV with theRoberto Ierusalimschy3-13/+33
2010-03-05when finding a 'name' for a function, handle the case when the functionRoberto Ierusalimschy1-2/+5
2010-03-04when searching for a variable name, look existing upvalues beforeRoberto Ierusalimschy1-20/+32
2010-03-03just in case, better to flush error messagesRoberto Ierusalimschy1-2/+3
2010-03-03new option '*L' for io.read + options for io.linesRoberto Ierusalimschy1-24/+48
2010-02-27avoid 'continue' unless necessaryRoberto Ierusalimschy2-59/+59
2010-02-27removed useless test (argv[i] cannot be NULL when i<argc)Roberto Ierusalimschy1-2/+1
2010-02-26new instructions to optimize indexing on upvaluesRoberto Ierusalimschy8-31/+89
2010-02-18detail: in loadfile read function, no need to return NULL on EOF;Roberto Ierusalimschy1-2/+2
2010-02-18avoid using 'ungetc' in loadfileRoberto Ierusalimschy1-7/+15
2010-02-18new macro 'luai_writestringerror'Roberto Ierusalimschy4-18/+25
2010-02-11no need to flush either stderr or \n-terminated outputsRoberto Ierusalimschy1-4/+1
2010-02-11use of 'conventional' names for shift and rotate operations +Roberto Ierusalimschy1-7/+27
2010-02-11removed support for '#fist-line comment' on binary files (as binaryRoberto Ierusalimschy1-14/+2
2010-02-09better usage messages, showing entire offending argumentRoberto Ierusalimschy1-8/+11