Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | using 'tolower' instead of 'toupper' (slightly simpler to implement) | Roberto Ierusalimschy | 2011-06-24 | 1 | -2/+2 |
| | |||||
* | macro 'ltoupper' instead of 'lisupper' (more usefull for Lua) | Roberto Ierusalimschy | 2011-06-23 | 1 | -3/+2 |
| | |||||
* | detail (missing cast to unsigned char when converting char to int) | Roberto Ierusalimschy | 2011-06-16 | 1 | -2/+2 |
| | |||||
* | no need for two different implementations for equality (one raw and | Roberto Ierusalimschy | 2011-05-31 | 1 | -23/+1 |
| | | | | one with metamethods) | ||||
* | more complete (and hopefuly more correct) handling of 'sizeof(char)' | Roberto Ierusalimschy | 2011-05-03 | 1 | -7/+9 |
| | |||||
* | new macro 'ttisequal' | Roberto Ierusalimschy | 2011-04-05 | 1 | -2/+2 |
| | |||||
* | trying to avoid assumption that sizeof(char)==1 | Roberto Ierusalimschy | 2011-02-07 | 1 | -2/+2 |
| | |||||
* | official support for floating hexa numerals | Roberto Ierusalimschy | 2010-12-10 | 1 | -10/+77 |
| | |||||
* | detection of erroneous numeric strings with \0 (such as "1\0") | Roberto Ierusalimschy | 2010-12-06 | 1 | -6/+7 |
| | |||||
* | bug: by-one error when creating short source names (luaO_chunkid) | Roberto Ierusalimschy | 2010-10-29 | 1 | -2/+2 |
| | |||||
* | comment typo | Roberto Ierusalimschy | 2010-10-29 | 1 | -2/+2 |
| | |||||
* | more robust implementation for 'luaO_str2d' | Roberto Ierusalimschy | 2010-10-28 | 1 | -6/+11 |
| | |||||
* | "light C function" is a better name than "C-function pointer" | Roberto Ierusalimschy | 2010-04-18 | 1 | -2/+2 |
| | |||||
* | no need to avoid calling ctype functions as now they are implemented | Roberto Ierusalimschy | 2010-04-15 | 1 | -4/+2 |
| | | | | by us (no inefficiencies due to accessing locale information) | ||||
* | first implementation of light C functions | Roberto Ierusalimschy | 2010-04-14 | 1 | -1/+3 |
| | |||||
* | new macro 'eqstr' | Roberto Ierusalimschy | 2010-04-05 | 1 | -1/+3 |
| | |||||
* | small changes in 'luaO_pushvfstring' | Roberto Ierusalimschy | 2010-04-02 | 1 | -15/+13 |
| | |||||
* | typo (thanks to Gavin) | Roberto Ierusalimschy | 2010-02-05 | 1 | -2/+2 |
| | |||||
* | comment typos | Roberto Ierusalimschy | 2009-11-26 | 1 | -2/+2 |
| | |||||
* | new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and | Roberto Ierusalimschy | 2009-11-19 | 1 | -2/+2 |
| | | | | definitions of non-static variables | ||||
* | new macro 'NILCONSTANT' to initialize nil constants | Roberto Ierusalimschy | 2009-11-06 | 1 | -2/+2 |
| | |||||
* | new function 'luaO_arith' to perform basic arithmetic operations | Roberto Ierusalimschy | 2009-06-17 | 1 | -1/+15 |
| | |||||
* | small bug in 'luaV_concat' (L->top was left incorrect in some cases) | Roberto Ierusalimschy | 2009-05-27 | 1 | -3/+2 |
| | |||||
* | Lua now uses "homemade" lctype (instead of ctype.h from ANSI C) | Roberto Ierusalimschy | 2009-02-19 | 1 | -3/+3 |
| | |||||
* | 'ceillog2' now is exported (other modules may need it) | Roberto Ierusalimschy | 2008-01-30 | 1 | -2/+20 |
| | |||||
* | 'lua_pushfstring' raises an error if called with invalid format | Roberto Ierusalimschy | 2007-12-19 | 1 | -6/+5 |
| | |||||
* | avoid the use of "exotic" libc functions | Roberto Ierusalimschy | 2007-11-09 | 1 | -28/+38 |
| | |||||
* | luaO_log2 can be private to ltable.c | Roberto Ierusalimschy | 2007-04-10 | 1 | -19/+1 |
| | |||||
* | comments | Roberto Ierusalimschy | 2006-11-22 | 1 | -2/+2 |
| | |||||
* | emergency garbage collector (core forces a GC when allocation fails) | Roberto Ierusalimschy | 2006-07-11 | 1 | -6/+6 |
| | |||||
* | complete support for hexadecimal constants | Roberto Ierusalimschy | 2006-02-10 | 1 | -1/+3 |
| | |||||
* | details | Roberto Ierusalimschy | 2006-01-10 | 1 | -2/+2 |
| | |||||
* | small changes in casts | Roberto Ierusalimschy | 2005-12-22 | 1 | -5/+5 |
| | |||||
* | no more L in numer-operator macros (some functions that use those macros | Roberto Ierusalimschy | 2005-10-24 | 1 | -2/+2 |
| | | | | have no access to L) | ||||
* | small optimization | Roberto Ierusalimschy | 2005-08-01 | 1 | -1/+2 |
| | |||||
* | details | Roberto Ierusalimschy | 2005-07-31 | 1 | -4/+3 |
| | |||||
* | detail | Roberto Ierusalimschy | 2005-07-11 | 1 | -2/+4 |
| | |||||
* | warnings in VS .Net | Roberto Ierusalimschy | 2005-05-31 | 1 | -6/+6 |
| | |||||
* | details | Roberto Ierusalimschy | 2005-05-20 | 1 | -2/+2 |
| | |||||
* | better quotes for strings in error messages | Roberto Ierusalimschy | 2005-05-16 | 1 | -2/+2 |
| | |||||
* | wrong comment corrected | Roberto Ierusalimschy | 2005-03-28 | 1 | -2/+3 |
| | |||||
* | `luac´ -> `luai' (to avoid confusion with other luac stuff) | Roberto Ierusalimschy | 2005-03-09 | 1 | -2/+2 |
| | |||||
* | `luaconf.h´ exports all its definitions always (so all of them | Roberto Ierusalimschy | 2005-03-08 | 1 | -2/+2 |
| | | | | must have a lua/LUA prefix). | ||||
* | fewer #include's in luaconf.h | Roberto Ierusalimschy | 2005-03-08 | 1 | -1/+2 |
| | |||||
* | macros for all arithmetic operations over lua_Numbers | Roberto Ierusalimschy | 2005-01-10 | 1 | -2/+2 |
| | |||||
* | details | Roberto Ierusalimschy | 2004-11-24 | 1 | -2/+2 |
| | |||||
* | better implementation for `floating-point bytes' | Roberto Ierusalimschy | 2004-11-01 | 1 | -5/+14 |
| | |||||
* | small optimization for table size in machines with double allignment | Roberto Ierusalimschy | 2004-10-06 | 1 | -2/+2 |
| | |||||
* | `lua_pushfstring' now supports `%p' option too | Roberto Ierusalimschy | 2004-07-09 | 1 | -6/+16 |
| | |||||
* | accept `\r' as newline when looking for line end | Roberto Ierusalimschy | 2004-05-03 | 1 | -2/+2 |
| |