Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | `lua.c' also needs the default path, so auxlib should provide it | Roberto Ierusalimschy | 2004-07-01 | 1 | -14/+2 | |
| | ||||||
* | new interface for search-path function + small changes in require | Roberto Ierusalimschy | 2004-06-29 | 1 | -15/+22 | |
| | ||||||
* | new scheme to search paths | Roberto Ierusalimschy | 2004-06-21 | 1 | -73/+23 | |
| | ||||||
* | `assert' returns all its parameters (not only the first) | Roberto Ierusalimschy | 2004-06-21 | 1 | -3/+2 | |
| | ||||||
* | `setfenv' returns "self" | Roberto Ierusalimschy | 2004-06-15 | 1 | -3/+5 | |
| | ||||||
* | option for garbage-collector `step' | Roberto Ierusalimschy | 2004-06-04 | 1 | -16/+5 | |
| | ||||||
* | no more `__fenv' | Roberto Ierusalimschy | 2004-06-02 | 1 | -15/+2 | |
| | ||||||
* | new function `select' | Roberto Ierusalimschy | 2004-05-31 | 1 | -1/+15 | |
| | ||||||
* | code parameterized by LUA_FIRSTINDEX (first index of an array) | Roberto Ierusalimschy | 2004-05-10 | 1 | -4/+5 | |
| | ||||||
* | new scheme for configuration through `luaconf.h' | Roberto Ierusalimschy | 2004-04-30 | 1 | -36/+27 | |
| | ||||||
* | `unpack' has two optional arguments (to give a range) | Roberto Ierusalimschy | 2004-03-26 | 1 | -4/+8 | |
| | ||||||
* | new (temporary?) API for garbage collector | Roberto Ierusalimschy | 2004-03-09 | 1 | -9/+26 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2003-12-10 | 1 | -2/+2 | |
| | ||||||
* | comments | Roberto Ierusalimschy | 2003-11-11 | 1 | -3/+3 | |
| | ||||||
* | lua_(set)getglobal are ok to use | Roberto Ierusalimschy | 2003-11-05 | 1 | -3/+3 | |
| | ||||||
* | `error()' (and `error(nil)') generates errors with no error messages | Roberto Ierusalimschy | 2003-10-23 | 1 | -5/+3 | |
| | ||||||
* | new functions `lua_getfield' and `lua_setfield' | Roberto Ierusalimschy | 2003-10-10 | 1 | -13/+7 | |
| | ||||||
* | new functions `lua_tointeger' and lua_pushinteger' | Roberto Ierusalimschy | 2003-10-07 | 1 | -7/+7 | |
| | ||||||
* | new function (generic) `load' | Roberto Ierusalimschy | 2003-08-27 | 1 | -1/+43 | |
| | ||||||
* | bug: IBM AS400 (OS400) has sizeof(void *)==16, and a `%p' may generate | Roberto Ierusalimschy | 2003-08-25 | 1 | -10/+17 | |
| | | | | | up to 60 characters in a `printf'. That causes a buffer overflow in `tostring'.. | |||||
* | fully-weak tables are more efficient | Roberto Ierusalimschy | 2003-05-16 | 1 | -3/+3 | |
| | ||||||
* | warnings from several compilers (mainly typecasts when lua_Number is float) | Roberto Ierusalimschy | 2003-04-03 | 1 | -4/+4 | |
| | ||||||
* | `__globals' -> `__fenv' | Roberto Ierusalimschy | 2003-03-19 | 1 | -8/+9 | |
| | ||||||
* | loadstring/loadfile use global environment + setfenv(0) changes | Roberto Ierusalimschy | 2003-03-11 | 1 | -12/+7 | |
| | | | | global environment | |||||
* | new names for functions that open C libraries | Roberto Ierusalimschy | 2003-03-11 | 1 | -2/+2 | |
| | ||||||
* | LUA_PATH components may have multiple interrogation marks | Roberto Ierusalimschy | 2003-03-11 | 1 | -7/+17 | |
| | ||||||
* | details (text of an error message) | Roberto Ierusalimschy | 2003-03-06 | 1 | -2/+2 | |
| | ||||||
* | no-nonsense debug information about tail calls | Roberto Ierusalimschy | 2003-02-27 | 1 | -1/+4 | |
| | ||||||
* | `set/getenvtable' -> `set/getfenv' | Roberto Ierusalimschy | 2003-02-24 | 1 | -12/+12 | |
| | ||||||
* | `require' returns value returned by package | Roberto Ierusalimschy | 2003-02-24 | 1 | -6/+11 | |
| | ||||||
* | `set/getglobals' -> `set/getenvtable' | Roberto Ierusalimschy | 2003-02-18 | 1 | -15/+15 | |
| | ||||||
* | restore _REQUIREDNAME after requiring a file | Roberto Ierusalimschy | 2003-02-18 | 1 | -4/+5 | |
| | ||||||
* | reset _REQUIREDNAME after loading module | Roberto Ierusalimschy | 2003-02-13 | 1 | -3/+5 | |
| | ||||||
* | `unpack' uses `getn' to get table size | Roberto Ierusalimschy | 2003-02-12 | 1 | -15/+6 | |
| | ||||||
* | more complete information for coroutine errors | Roberto Ierusalimschy | 2003-02-10 | 1 | -2/+9 | |
| | ||||||
* | bug: `resume' was checking the wrong value for stack overflow | Roberto Ierusalimschy | 2002-12-20 | 1 | -2/+2 | |
| | ||||||
* | "load*" creates chunk with same global table than caller | Roberto Ierusalimschy | 2002-12-06 | 1 | -5/+13 | |
| | ||||||
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+3 | |
| | ||||||
* | avoid non-raw accesses to globals when variable may not exist | Roberto Ierusalimschy | 2002-12-04 | 1 | -3/+5 | |
| | ||||||
* | details | Roberto Ierusalimschy | 2002-11-26 | 1 | -2/+2 | |
| | ||||||
* | new `coroutine.status' function | Roberto Ierusalimschy | 2002-11-26 | 1 | -1/+18 | |
| | ||||||
* | renaming `stringdump' -> `string.dump' | Roberto Ierusalimschy | 2002-11-25 | 1 | -21/+1 | |
| | ||||||
* | comments | Roberto Ierusalimschy | 2002-11-22 | 1 | -3/+3 | |
| | ||||||
* | messages | Roberto Ierusalimschy | 2002-11-18 | 1 | -3/+3 | |
| | ||||||
* | better names for auxiliar functions | Roberto Ierusalimschy | 2002-11-14 | 1 | -42/+42 | |
| | ||||||
* | back to `__mode' metafield to specify weakness | Roberto Ierusalimschy | 2002-11-14 | 1 | -19/+6 | |
| | ||||||
* | better name for `lua_movethread' | Roberto Ierusalimschy | 2002-11-07 | 1 | -5/+5 | |
| | ||||||
* | new API for coroutines | Roberto Ierusalimschy | 2002-11-06 | 1 | -22/+24 | |
| | ||||||
* | C++ demands cast from void to specific types | Roberto Ierusalimschy | 2002-10-25 | 1 | -2/+2 | |
| | ||||||
* | new facility for dumping chunks | Roberto Ierusalimschy | 2002-10-25 | 1 | -1/+21 | |
| |