Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | "getobjname" checks first fallbacks (so, if a function is global and | Roberto Ierusalimschy | 1995-11-03 | 1 | -4/+4 |
| | | | | a fallback, it is reported as a fallback). | ||||
* | functions now may be declared with any "var" as a name; | Roberto Ierusalimschy | 1995-10-26 | 1 | -31/+21 |
| | | | | | therefore they do not have a "baptism" name. Changes in debug API to acomodate that. | ||||
* | small changes in the format of debug information. | Roberto Ierusalimschy | 1995-10-23 | 1 | -4/+8 |
| | |||||
* | new style for debug information about functions: no more SETFUNCTION | Roberto Ierusalimschy | 1995-10-17 | 1 | -51/+51 |
| | | | | | | | | opcodes. When a function is called, its entry in the stack is marked with LUA_T_(C)MARK, so function 'luaD_stackedfunction' can find it if needed. Functions now have their file names in the headers, so there is no need of 'addfile' and the like. | ||||
* | new function "luaI_findconstantbyname". | Roberto Ierusalimschy | 1995-10-13 | 1 | -4/+9 |
| | |||||
* | Garbage collection of functions + header structure for functions | Roberto Ierusalimschy | 1995-10-04 | 1 | -1/+5 |
| | |||||
* | small corrections to avoid uninitialized global variables. | Roberto Ierusalimschy | 1995-09-15 | 1 | -3/+3 |
| | |||||
* | Ajustar limites para garbage collection. | Waldemar Celes | 1995-05-16 | 1 | -3/+3 |
| | |||||
* | new lua function "getstack"; new interface to function luaI_reportbug. | Roberto Ierusalimschy | 1995-05-16 | 1 | -1/+3 |
| | |||||
* | calls to "lua_reportbug" changed to "lua_error", since | Roberto Ierusalimschy | 1995-05-02 | 1 | -7/+7 |
| | | | | "lua_reportbug" is only an internal function to build debug information | ||||
* | trocar a funcao para garbage colector adaptativo. | Waldemar Celes | 1995-01-18 | 1 | -2/+2 |
| | |||||
* | strdup is done via mem.c to control its memory allocation | Roberto Ierusalimschy | 1995-01-14 | 1 | -2/+2 |
| | |||||
* | control of garbage collection is done with Longs, as there can be | Roberto Ierusalimschy | 1995-01-12 | 1 | -4/+4 |
| | | | | more than WORD objects to collect. | ||||
* | better control of integer types and their limits | Roberto Ierusalimschy | 1994-12-20 | 1 | -15/+16 |
| | |||||
* | new constant LUA_NOOBJECT | Roberto Ierusalimschy | 1994-12-16 | 1 | -3/+3 |
| | |||||
* | garbage collection tag for strings organized in struct TaggedString | Roberto Ierusalimschy | 1994-11-23 | 1 | -11/+13 |
| | |||||
* | new lua functions 'getglobal' and 'setglobal' | Roberto Ierusalimschy | 1994-11-21 | 1 | -6/+32 |
| | |||||
* | function 'lua_createstring' moved from table.c to tree.c | Roberto Ierusalimschy | 1994-11-18 | 1 | -11/+1 |
| | |||||
* | changes in garbage collection control | Roberto Ierusalimschy | 1994-11-17 | 1 | -22/+14 |
| | |||||
* | new module for memory allocation | Roberto Ierusalimschy | 1994-11-16 | 1 | -17/+7 |
| | |||||
* | correction of function 'nextvar' | Roberto Ierusalimschy | 1994-11-16 | 1 | -5/+8 |
| | |||||
* | unification of symbol tree and constant tree | Roberto Ierusalimschy | 1994-11-14 | 1 | -23/+25 |
| | |||||
* | small corrections to avoid 'warings' with acc | Roberto Ierusalimschy | 1994-11-11 | 1 | -3/+3 |
| | |||||
* | small changes in error recovery | Roberto Ierusalimschy | 1994-11-10 | 1 | -42/+13 |
| | |||||
* | frees file names when unstacked | Roberto Ierusalimschy | 1994-11-09 | 1 | -3/+3 |
| | |||||
* | garbage collection for locked objects | Roberto Ierusalimschy | 1994-11-08 | 1 | -3/+9 |
| | |||||
* | new API: lua_Object now is an integer | Roberto Ierusalimschy | 1994-11-07 | 1 | -10/+10 |
| | |||||
* | new global function 'setfallback' | Roberto Ierusalimschy | 1994-11-04 | 1 | -5/+7 |
| | |||||
* | there is no need of predefined constants. | Roberto Ierusalimschy | 1994-11-03 | 1 | -14/+4 |
| | |||||
* | function 'lua_addfile' returns an error message | Roberto Ierusalimschy | 1994-11-03 | 1 | -12/+6 |
| | |||||
* | tags T_NIL, etc, changed to LUA_T_NIL, etc | Roberto Ierusalimschy | 1994-11-02 | 1 | -14/+14 |
| | |||||
* | frees filename from file stack | Roberto Ierusalimschy | 1994-11-02 | 1 | -2/+2 |
| | |||||
* | deletion of 'include mm.h' | Roberto Ierusalimschy | 1994-10-18 | 1 | -3/+1 |
| | |||||
* | remove of 'printf' for debuging. | Roberto Ierusalimschy | 1994-10-17 | 1 | -3/+1 |
| | |||||
* | adaptative garbage collection. | Waldemar Celes | 1994-10-17 | 1 | -5/+8 |
| | |||||
* | Implementacao de funcoes para tratar Lua function em C e | Waldemar Celes | 1994-08-03 | 1 | -3/+3 |
| | | | | correcoes de bugs nas tabelas dinamicas. | ||||
* | Uso de arvores binarias para armazenar nomes e realocacao dinamica | Waldemar Celes | 1994-07-19 | 1 | -171/+143 |
| | | | | de tabelas (pilhas, hashtable, globais, codigo, etc.) | ||||
* | Implementacao da nova estrategia para armazenar os arrays | Waldemar Celes | 1994-04-20 | 1 | -75/+53 |
| | | | | em lista encadeada. | ||||
* | Correcao de bug: uma string ja' existente na tabela de string nao | Waldemar Celes | 1994-04-13 | 1 | -2/+5 |
| | | | | estava sendo liberada. | ||||
* | Modificaco para reservar espaco do byte para marcar constantes | Waldemar Celes | 1994-04-06 | 1 | -5/+13 |
| | | | | pre-definidas. | ||||
* | Acrescentar o gerenciador de memoria "mm", corrigir bug reservando | Waldemar Celes | 1994-03-28 | 1 | -5/+14 |
| | | | | | | o byte para a coleta de lixo nas constantes pre-definidas e colocar um teste em tempo de execucao para evitar duplicidade de valores na tabela de strings (teste ainda linear). | ||||
* | eliminacao da funcao findenclosedconstant, cuja tarefa agora | Roberto Ierusalimschy | 1993-12-22 | 1 | -52/+1 |
| | | | | e' realizada pelo analizador lexico | ||||
* | Module to control static tables | Waldemar Celes | 1993-12-17 | 1 | -19/+58 |
| | |||||
* | oldest known commit | The Lua team | 1993-07-28 | 1 | -0/+351 |