aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* table sizes don't need to be primes; power of 2 gives the same performance.Roberto Ierusalimschy1999-11-266-40/+37
|
* new way to keep function arguments (with StkId instead of copy)Roberto Ierusalimschy1999-11-261-52/+51
|
* new way to code CALLs + passing multiple arguments between function callsRoberto Ierusalimschy1999-11-253-32/+22
|
* new signature for function luaD_call (old luaD_calln)Roberto Ierusalimschy1999-11-252-17/+14
|
* commentRoberto Ierusalimschy1999-11-251-2/+2
|
* macros `key', `val', and `node' don't need the stateRoberto Ierusalimschy1999-11-233-12/+12
|
* simpler without `init_hash'Roberto Ierusalimschy1999-11-221-28/+12
|
* new macro luaL_openlRoberto Ierusalimschy1999-11-226-20/+20
|
* first implementation of multiple states (reentrant code).Roberto Ierusalimschy1999-11-2244-1930/+2075
|
* last warnings in Visual CRoberto Ierusalimschy1999-11-162-7/+7
|
* detailsRoberto Ierusalimschy1999-11-121-2/+2
|
* new API function `lua_equalobj'Roberto Ierusalimschy1999-11-113-7/+18
|
* BUG: `strfind' does not handle \0 in plain search.Roberto Ierusalimschy1999-11-112-10/+36
|
* better ways to test lock mechanismRoberto Ierusalimschy1999-11-101-6/+9
|
* buffer can shrink when too bigRoberto Ierusalimschy1999-11-102-7/+12
|
* ways to measure number of `blocks' for GC + detailsRoberto Ierusalimschy1999-11-106-30/+35
|
* better implementation of `lua_ref' (much better...)Roberto Ierusalimschy1999-11-102-16/+46
|
* new warnings with option "-W" (gcc)Roberto Ierusalimschy1999-11-094-6/+8
|
* new implementation for global variable values (separated from strings)Roberto Ierusalimschy1999-11-0412-145/+166
|
* default `success' for exit is more useful.Roberto Ierusalimschy1999-10-261-2/+2
|
* invariant tests over tables performed externally, through a built-inRoberto Ierusalimschy1999-10-263-56/+29
| | | | function (when DEBUG is ion).
* details (comments)Roberto Ierusalimschy1999-10-251-3/+3
|
* warnings from Visual C++Roberto Ierusalimschy1999-10-197-16/+15
|
* some more `const'sRoberto Ierusalimschy1999-10-146-14/+17
|
* new implementation of hash tables.Roberto Ierusalimschy1999-10-149-129/+287
|
* better assertions.Roberto Ierusalimschy1999-10-142-6/+9
|
* new implementation for string hashing, with chaining.Roberto Ierusalimschy1999-10-117-127/+117
|
* Visual C++ warningRoberto Ierusalimschy1999-10-111-2/+2
|
* read patterns are deprecated; new option `read(n)' to read n bytes.Roberto Ierusalimschy1999-10-071-28/+77
|
* new API function 'lua_type'.Roberto Ierusalimschy1999-10-073-14/+15
|
* detailsRoberto Ierusalimschy1999-10-051-10/+22
|
* simplified version of `gc' tag method (only for userdata now).Roberto Ierusalimschy1999-10-0420-443/+384
|
* implementation of lua_ref (previously in module `lmem').Roberto Ierusalimschy1999-10-042-0/+95
|
* temporary versionRoberto Ierusalimschy1999-09-291-2/+2
|
* checks table size only when element is a new oneRoberto Ierusalimschy1999-09-281-33/+49
|
* detailsRoberto Ierusalimschy1999-09-271-7/+7
|
* "luaH_set" only needs to check size when key is newRoberto Ierusalimschy1999-09-221-24/+18
|
* `put_luaObjectonTop' must be public (to be used by lfback.c), and soRoberto Ierusalimschy1999-09-212-9/+9
| | | | it must have a "public" name: `luaA_putObjectOnTop'
* compatibility with old fallback system now provided by external moduleRoberto Ierusalimschy1999-09-205-130/+13
|
* reorganization of `stat' function.Roberto Ierusalimschy1999-09-201-76/+96
|
* remove of some useless #includesRoberto Ierusalimschy1999-09-171-5/+1
|
* detailsRoberto Ierusalimschy1999-09-131-3/+3
|
* tonumber'e1' and tonumber(' ', x), for x!=10, gave 0 instead of nil.Roberto Ierusalimschy1999-09-083-24/+27
|
* new interface for `luaO_strtod', which now checks signal, too.Roberto Ierusalimschy1999-09-064-26/+12
|
* test first the most common case.Roberto Ierusalimschy1999-09-061-5/+5
|
* details.Roberto Ierusalimschy1999-09-061-2/+2
|
* new interface for `luaO_strtod', which now checks signal, too.Roberto Ierusalimschy1999-09-061-7/+20
|
* `luaL_arg_check' always has an `extramsg'.Roberto Ierusalimschy1999-09-061-6/+3
|
* in the (old) expression << ls->fs->f->consts[checkname(ls)] >>, checknameRoberto Ierusalimschy1999-09-021-0/+8
| | | | could realloc f->consts.
* bug: in the (old) expression << ls->fs->f->consts[checkname(ls)] >>, checknameRoberto Ierusalimschy1999-09-021-14/+15
| | | | could realloc f->consts.