aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* new API for coroutinesRoberto Ierusalimschy2002-11-066-88/+85
|
* detailRoberto Ierusalimschy2002-11-041-9/+9
|
* new module, ldump.cRoberto Ierusalimschy2002-10-251-32/+34
|
* C++ demands cast from void to specific typesRoberto Ierusalimschy2002-10-251-2/+2
|
* new facility for dumping chunksRoberto Ierusalimschy2002-10-253-4/+47
|
* module for dumping chunksRoberto Ierusalimschy2002-10-251-0/+158
|
* Writer type must be public (so, in lua.h)Roberto Ierusalimschy2002-10-251-4/+2
|
* new version (from lhf)Roberto Ierusalimschy2002-10-251-20/+15
|
* C needs "union" (unlike C++)Roberto Ierusalimschy2002-10-251-2/+2
|
* assertion must be always valid (not only in debug mode)Roberto Ierusalimschy2002-10-252-3/+3
|
* threads now are real Lua objects, subject to garbage collectionRoberto Ierusalimschy2002-10-2512-204/+246
|
* optional limits for table.concatRoberto Ierusalimschy2002-10-231-4/+6
|
* detailsRoberto Ierusalimschy2002-10-231-3/+3
|
* field `__globals' protect global tablesRoberto Ierusalimschy2002-10-221-2/+15
|
* tests for compatibility functions lua_dostring/lua_dofileRoberto Ierusalimschy2002-10-221-1/+13
|
* print error on stderr when _ALERT is not definedRoberto Ierusalimschy2002-10-221-4/+9
|
* only one instance of registry and default metatable per global stateRoberto Ierusalimschy2002-10-223-26/+23
|
* avoid too much precision when printing numbersRoberto Ierusalimschy2002-10-221-2/+2
|
* small changes in type configuration facilitiesRoberto Ierusalimschy2002-10-225-13/+23
|
* better tokens for error messagesRoberto Ierusalimschy2002-10-221-6/+4
|
* detailRoberto Ierusalimschy2002-10-211-3/+3
|
* free prototype in (more or less) the same order it is created byRoberto Ierusalimschy2002-10-211-3/+3
| | | | `undump'
* do not pretend that file is closed when close failsRoberto Ierusalimschy2002-10-211-3/+7
|
* correct handling of opened files in presence of memory allocationRoberto Ierusalimschy2002-10-162-43/+53
| | | | errors
* in case of memory allocation errors, sizecode and sizelineinfo canRoberto Ierusalimschy2002-10-165-11/+14
| | | | be different
* io.lines() iterate over the standard input fileRoberto Ierusalimschy2002-10-111-12/+23
|
* `undump' also uses private bufferRoberto Ierusalimschy2002-10-093-7/+10
|
* detailsRoberto Ierusalimschy2002-10-091-3/+8
|
* use of different buffers for scanner and concatenationRoberto Ierusalimschy2002-10-0815-110/+136
|
* new ANSI C does not assure that realloc(p,0) == free(p)Roberto Ierusalimschy2002-10-082-7/+15
|
* to avoid `strerror', define itself to something else;Roberto Ierusalimschy2002-10-041-7/+7
| | | | nil has a special, fixed reference
* small optimization for object comparisonRoberto Ierusalimschy2002-10-041-4/+5
|
* detailRoberto Ierusalimschy2002-10-041-3/+2
|
* easier to define `api_check' using `assert'Roberto Ierusalimschy2002-09-201-7/+12
|
* EXIT_SUCCESS may be different from 0Roberto Ierusalimschy2002-09-201-2/+2
|
* unification of __index & __gettable (and __newindex & __settable)Roberto Ierusalimschy2002-09-194-22/+18
|
* avoid `reclearing' weak tablesRoberto Ierusalimschy2002-09-191-10/+13
|
* state's buffer is used only for charsRoberto Ierusalimschy2002-09-196-14/+13
|
* new generators for reading a file line by lineRoberto Ierusalimschy2002-09-171-21/+69
|
* `setmetatable' cannot change protected objectsRoberto Ierusalimschy2002-09-163-12/+16
|
* detailsRoberto Ierusalimschy2002-09-161-2/+3
|
* avoid luaS_resize (which may need extra memory) during `main' activitiesRoberto Ierusalimschy2002-09-051-7/+8
|
* cannot raise memory error when realloc to smaller blockRoberto Ierusalimschy2002-09-051-2/+2
|
* no more newlines at the end of error messagesRoberto Ierusalimschy2002-09-056-25/+16
|
* no more reserved word "global"Roberto Ierusalimschy2002-09-032-4/+4
|
* avoid the use of "enum" in the API, as they do not have a fixed representationRoberto Ierusalimschy2002-09-023-9/+17
|
* detailsRoberto Ierusalimschy2002-09-024-32/+26
|
* avoid the use of "obvious" names in header files to avoid conflictsRoberto Ierusalimschy2002-08-303-62/+60
|
* new structure for collectable objects, sharing a common headerRoberto Ierusalimschy2002-08-3014-299/+273
|
* GC metamethod stored in a weak metatable being collected together withRoberto Ierusalimschy2002-08-301-0/+12
| | | | userdata may not be cleared properly