Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | no need for two different implementations for equality (one raw and | Roberto Ierusalimschy | 2011-05-31 | 1 | -2/+2 | |
| | | | | one with metamethods) | |||||
* | yet another macro abstracting TValue representation | Roberto Ierusalimschy | 2011-05-26 | 1 | -12/+13 | |
| | ||||||
* | new macro 'lua_longassert' that is equivalent to an assertion without | Roberto Ierusalimschy | 2011-05-05 | 1 | -4/+3 | |
| | | | | | a stringfication of the condition, to avoid too long string literals (limited by C90 to ~510 characters) | |||||
* | new macros abstracting TValue representation (to easy change to | Roberto Ierusalimschy | 2011-05-05 | 1 | -43/+48 | |
| | | | | other representations) | |||||
* | detail in assertion | Roberto Ierusalimschy | 2011-05-04 | 1 | -2/+2 | |
| | ||||||
* | more complete (and hopefuly more correct) handling of 'sizeof(char)' | Roberto Ierusalimschy | 2011-05-03 | 1 | -3/+3 | |
| | ||||||
* | cleaner scheme of bits for variant types (light C functions) and | Roberto Ierusalimschy | 2011-04-07 | 1 | -33/+47 | |
| | | | | collectable types | |||||
* | all names used internally by macros end with '_' | Roberto Ierusalimschy | 2011-04-05 | 1 | -28/+28 | |
| | ||||||
* | small problems with 'luaone.c' | Roberto Ierusalimschy | 2011-02-28 | 1 | -1/+6 | |
| | ||||||
* | prototype for 'luaO_ceillog2' was different from definition | Roberto Ierusalimschy | 2011-01-07 | 1 | -2/+2 | |
| | ||||||
* | 'hexafloat' moved to 'lobject.c' (hexa conversion needs it too) | Roberto Ierusalimschy | 2010-12-10 | 1 | -1/+2 | |
| | ||||||
* | detection of erroneous numeric strings with \0 (such as "1\0") | Roberto Ierusalimschy | 2010-12-06 | 1 | -2/+2 | |
| | ||||||
* | finalizers (__gc) for tables | Roberto Ierusalimschy | 2010-11-26 | 1 | -1/+5 | |
| | ||||||
* | several new comments | Roberto Ierusalimschy | 2010-07-26 | 1 | -27/+43 | |
| | ||||||
* | Lua closures are cached for reuse | Roberto Ierusalimschy | 2010-06-04 | 1 | -1/+2 | |
| | ||||||
* | slightly better definition for 'changenvalue' | Roberto Ierusalimschy | 2010-05-07 | 1 | -3/+2 | |
| | ||||||
* | "light C function" is a better name than "C-function pointer" | Roberto Ierusalimschy | 2010-04-18 | 1 | -6/+6 | |
| | ||||||
* | first implementation of light C functions | Roberto Ierusalimschy | 2010-04-14 | 1 | -9/+30 | |
| | ||||||
* | new macro LUA_NUMTAGS | Roberto Ierusalimschy | 2010-04-12 | 1 | -10/+4 | |
| | ||||||
* | no more fenvs! | Roberto Ierusalimschy | 2010-03-26 | 1 | -3/+2 | |
| | ||||||
* | first version of _ENV; no more global variables | Roberto Ierusalimschy | 2010-03-12 | 1 | -2/+1 | |
| | ||||||
* | 'setobj' must assing fields one by one, to allow trick of using | Roberto Ierusalimschy | 2010-01-08 | 1 | -3/+5 | |
| | | | | pad space in table keys | |||||
* | new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and | Roberto Ierusalimschy | 2009-11-19 | 1 | -2/+2 | |
| | | | | definitions of non-static variables | |||||
* | several small changes to simplify changing TValue if needed | Roberto Ierusalimschy | 2009-11-06 | 1 | -19/+17 | |
| | ||||||
* | better control over accesses to TValue fields | Roberto Ierusalimschy | 2009-11-05 | 1 | -28/+31 | |
| | ||||||
* | first implementation of lexical environments | Roberto Ierusalimschy | 2009-09-30 | 1 | -1/+2 | |
| | ||||||
* | information about upvalues (where they come from) kept in Proto structure, | Roberto Ierusalimschy | 2009-09-28 | 1 | -4/+12 | |
| | | | | instead of sequence of pseudo-opcodes after OP_CLOSURE | |||||
* | new macro 'getproto' | Roberto Ierusalimschy | 2009-07-15 | 1 | -1/+2 | |
| | ||||||
* | new macro 'changenvalue' | Roberto Ierusalimschy | 2009-06-18 | 1 | -1/+4 | |
| | ||||||
* | new function 'luaO_arith' to perform basic arithmetic operations | Roberto Ierusalimschy | 2009-06-17 | 1 | -1/+2 | |
| | ||||||
* | no more support for old-style varargs | Roberto Ierusalimschy | 2009-03-26 | 1 | -7/+1 | |
| | ||||||
* | bug: string at the end of TString must consider the entire TString | Roberto Ierusalimschy | 2008-08-05 | 1 | -2/+2 | |
| | | | | entity, not only its 'tsv' part | |||||
* | 'ceillog2' now is exported (other modules may need it) | Roberto Ierusalimschy | 2008-01-30 | 1 | -1/+2 | |
| | ||||||
* | luaO_log2 can be private to ltable.c | Roberto Ierusalimschy | 2007-04-10 | 1 | -4/+1 | |
| | ||||||
* | avoid trailing white spaces | Roberto Ierusalimschy | 2006-09-11 | 1 | -2/+2 | |
| | ||||||
* | unused macro removed | Roberto Ierusalimschy | 2006-01-18 | 1 | -4/+1 | |
| | ||||||
* | avoids type punning for table keys | Roberto Ierusalimschy | 2006-01-10 | 1 | -5/+9 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2005-10-24 | 1 | -2/+2 | |
| | ||||||
* | bug: last tag is not the number of tags... | Roberto Ierusalimschy | 2005-06-13 | 1 | -5/+7 | |
| | ||||||
* | better control for compatibility code for varargs | Roberto Ierusalimschy | 2005-06-13 | 1 | -3/+6 | |
| | ||||||
* | new mark LUAI_DATA for extern data | Roberto Ierusalimschy | 2005-06-06 | 1 | -2/+2 | |
| | ||||||
* | warnings in VS .Net | Roberto Ierusalimschy | 2005-05-31 | 1 | -2/+2 | |
| | ||||||
* | debug information for last line of a function definition | Roberto Ierusalimschy | 2005-05-05 | 1 | -2/+3 | |
| | ||||||
* | added LUAI_FUNC to functions not in the API | Roberto Ierusalimschy | 2005-04-25 | 1 | -11/+10 | |
| | ||||||
* | C functions and userdata also have environments | Roberto Ierusalimschy | 2005-02-18 | 1 | -3/+4 | |
| | ||||||
* | cleaner way to remark open upvalues | Roberto Ierusalimschy | 2005-01-18 | 1 | -2/+8 | |
| | ||||||
* | change in hash algorithm so that it does not need empty slot | Roberto Ierusalimschy | 2005-01-05 | 1 | -2/+4 | |
| | | | | (tables can be 100% full) | |||||
* | better (correct?) way to handle `next' over removed keys | Roberto Ierusalimschy | 2004-12-04 | 1 | -1/+2 | |
| | ||||||
* | better implementation for `floating-point bytes' | Roberto Ierusalimschy | 2004-11-01 | 1 | -2/+2 | |
| | ||||||
* | small optimization for table size in machines with double allignment | Roberto Ierusalimschy | 2004-10-06 | 1 | -6/+13 | |
| |