Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | spaces -> tabs in #defines | Roberto Ierusalimschy | 2012-05-23 | 1 | -3/+3 |
| | |||||
* | random seed used in the hash of all strings to avoid intentional | Roberto Ierusalimschy | 2012-02-01 | 1 | -2/+2 |
| | | | | collisions | ||||
* | first implementation of long strings | Roberto Ierusalimschy | 2012-01-25 | 1 | -6/+15 |
| | |||||
* | 'eqstr' -> 'luaS_eqstr' | Roberto Ierusalimschy | 2012-01-23 | 1 | -2/+2 |
| | |||||
* | avoid 'return' "to avoid warnings" | Roberto Ierusalimschy | 2011-11-30 | 1 | -5/+5 |
| | |||||
* | avoid some warnings about converting 32-bit shifts into 64-bit results | Roberto Ierusalimschy | 2011-11-28 | 1 | -3/+3 |
| | |||||
* | lint (unused definition) | Roberto Ierusalimschy | 2011-09-30 | 1 | -8/+1 |
| | |||||
* | dead objects are not collectable. | Roberto Ierusalimschy | 2011-09-24 | 1 | -2/+2 |
| | |||||
* | cannot compute 'mainposition' before checking whether key is nil | Roberto Ierusalimschy | 2011-09-15 | 1 | -2/+3 |
| | |||||
* | bug: __newindex metamethod may not work if metatable is its own | Roberto Ierusalimschy | 2011-08-17 | 1 | -12/+17 |
| | | | | | metatable + luaV_settable does not create entry when there is a metamethod (and therefore entry is useless) | ||||
* | no more 'luaH_setstr (used only once) + 'luaH_setint' receives value | Roberto Ierusalimschy | 2011-08-09 | 1 | -17/+7 |
| | | | | to be set. | ||||
* | avoid warning about -unsigned value | Roberto Ierusalimschy | 2011-06-16 | 1 | -2/+2 |
| | |||||
* | avoid warnings with -Wstrict-overflow | Roberto Ierusalimschy | 2011-06-09 | 1 | -3/+4 |
| | |||||
* | stricter control (using tag variants) over closure kinds (Lua x C) | Roberto Ierusalimschy | 2011-06-02 | 1 | -2/+2 |
| | |||||
* | more uniform names for 'equalobj'-related functions | Roberto Ierusalimschy | 2011-05-31 | 1 | -3/+3 |
| | |||||
* | no need for two different implementations for equality (one raw and | Roberto Ierusalimschy | 2011-05-31 | 1 | -3/+4 |
| | | | | one with metamethods) | ||||
* | comment | Roberto Ierusalimschy | 2011-05-02 | 1 | -2/+2 |
| | |||||
* | detail (should use macro 'ttisdeadkey') | Roberto Ierusalimschy | 2011-04-05 | 1 | -2/+2 |
| | |||||
* | allows larger array parts in tables (no need to restrict it to 2^26) | Roberto Ierusalimschy | 2010-11-11 | 1 | -3/+3 |
| | |||||
* | macro 'key2tal' replaced by 'gkey' (as both were equal) | Roberto Ierusalimschy | 2010-06-25 | 1 | -7/+7 |
| | |||||
* | better names for barrier macros | Roberto Ierusalimschy | 2010-06-04 | 1 | -2/+2 |
| | |||||
* | "light C function" is a better name than "C-function pointer" | Roberto Ierusalimschy | 2010-04-18 | 1 | -2/+2 |
| | |||||
* | first implementation of light C functions | Roberto Ierusalimschy | 2010-04-14 | 1 | -1/+3 |
| | |||||
* | new macro 'eqstr' | Roberto Ierusalimschy | 2010-04-05 | 1 | -2/+3 |
| | |||||
* | allocator function receives the tag of object being allocated in 'osize' | Roberto Ierusalimschy | 2009-12-17 | 1 | -3/+2 |
| | | | | when 'ptr' is NULL. | ||||
* | comment typos | Roberto Ierusalimschy | 2009-11-26 | 1 | -2/+2 |
| | |||||
* | new macro 'isdummy' | Roberto Ierusalimschy | 2009-11-19 | 1 | -8/+10 |
| | |||||
* | new macro 'NILCONSTANT' to initialize nil constants | Roberto Ierusalimschy | 2009-11-06 | 1 | -4/+4 |
| | |||||
* | better control over accesses to TValue fields | Roberto Ierusalimschy | 2009-11-05 | 1 | -2/+2 |
| | |||||
* | new hash for doubles based on frexp, to avoid low-level tricks | Roberto Ierusalimschy | 2009-10-23 | 1 | -8/+7 |
| | |||||
* | luaH_[gs]etnum renamed to luaH_[gs]etint (as they only accept integers, | Roberto Ierusalimschy | 2009-08-07 | 1 | -9/+9 |
| | | | | not generic numbers). | ||||
* | 'luaM_freearray' does not need array type as argument | Roberto Ierusalimschy | 2009-04-17 | 1 | -4/+4 |
| | |||||
* | avoid making 'lastfree' an invalid pointer | Roberto Ierusalimschy | 2009-03-30 | 1 | -2/+3 |
| | |||||
* | 'ceillog2' now is exported (other modules may need it) | Roberto Ierusalimschy | 2008-01-30 | 1 | -21/+3 |
| | |||||
* | another way to normalize -0 that avoids problems with very small | Roberto Ierusalimschy | 2007-04-18 | 1 | -3/+3 |
| | | | | numbers (adding 1 turns them all into 1) | ||||
* | luaO_log2 can be private to ltable.c | Roberto Ierusalimschy | 2007-04-10 | 1 | -1/+19 |
| | |||||
* | avoid trailing white spaces | Roberto Ierusalimschy | 2006-09-11 | 1 | -8/+8 |
| | |||||
* | macros luai_num* take a state L (when available) as argument, to allow | Roberto Ierusalimschy | 2006-08-07 | 1 | -2/+2 |
| | | | | them to generate errors (and other facilities) | ||||
* | emergency garbage collector (core forces a GC when allocation fails) | Roberto Ierusalimschy | 2006-07-11 | 1 | -10/+6 |
| | |||||
* | detail | Roberto Ierusalimschy | 2006-01-18 | 1 | -2/+2 |
| | |||||
* | avoid unnecessary exports | Roberto Ierusalimschy | 2006-01-10 | 1 | -15/+28 |
| | |||||
* | avoids type punning for table keys | Roberto Ierusalimschy | 2006-01-10 | 1 | -24/+25 |
| | |||||
* | small changes in casts | Roberto Ierusalimschy | 2005-12-22 | 1 | -10/+10 |
| | |||||
* | new macro luai_numisnan | Roberto Ierusalimschy | 2005-11-25 | 1 | -2/+2 |
| | |||||
* | no more L in numer-operator macros (some functions that use those macros | Roberto Ierusalimschy | 2005-10-24 | 1 | -5/+5 |
| | | | | have no access to L) | ||||
* | warnings from Visual C | Roberto Ierusalimschy | 2005-07-11 | 1 | -3/+3 |
| | |||||
* | warnings in VS .Net | Roberto Ierusalimschy | 2005-05-31 | 1 | -2/+2 |
| | |||||
* | details | Roberto Ierusalimschy | 2005-05-20 | 1 | -5/+5 |
| | |||||
* | several small details | Roberto Ierusalimschy | 2005-05-17 | 1 | -2/+2 |
| | |||||
* | better quotes for strings in error messages | Roberto Ierusalimschy | 2005-05-16 | 1 | -2/+2 |
| |