| Commit message (Expand) | Author | Age | Files | Lines |
* | header "stdlib.h" was missing (gcc does not warn that) | Roberto Ierusalimschy | 1995-02-06 | 1 | -1/+2 |
* | a null lua_Object is LUA_NOOBJECT, not NULL. | Roberto Ierusalimschy | 1995-02-02 | 1 | -2/+2 |
* | new API function lua_pushlocked & lua_checkstack is a macro | Waldemar Celes | 1995-01-27 | 1 | -16/+23 |
* | stack is indexed by integers, not Words, to allow bigger stack on 32 bit mach... | Roberto Ierusalimschy | 1994-12-30 | 1 | -2/+6 |
* | functions that no more return error codes now have return type void | Roberto Ierusalimschy | 1994-12-28 | 1 | -27/+16 |
* | 'lua_getsubscript' and 'lua_storesubscript' now run unprotected (to improve e... | Waldemar Celes | 1994-12-27 | 1 | -14/+6 |
* | better control of integer types and their limits | Roberto Ierusalimschy | 1994-12-20 | 1 | -24/+25 |
* | a field with value 'nil' must call the fallback 'index' | Roberto Ierusalimschy | 1994-12-16 | 1 | -2/+2 |
* | new constant LUA_NOOBJECT. | Roberto Ierusalimschy | 1994-12-16 | 1 | -22/+12 |
* | new API function 'lua_pushliteral' | Roberto Ierusalimschy | 1994-12-13 | 1 | -1/+14 |
* | opcode PUSHSELF has a parameter that indicates the method to be called | Roberto Ierusalimschy | 1994-12-06 | 1 | -2/+5 |
* | small bug correction | Roberto Ierusalimschy | 1994-11-30 | 1 | -2/+2 |
* | garbage collection tag for strings organized in struct TaggedString | Roberto Ierusalimschy | 1994-11-23 | 1 | -7/+7 |
* | correction of function tonumber | Roberto Ierusalimschy | 1994-11-22 | 1 | -2/+3 |
* | fallback for "call expression not a function" errors | Roberto Ierusalimschy | 1994-11-21 | 1 | -4/+18 |
* | fallback to unary minus is 'arith' with operation code 'unm' | Roberto Ierusalimschy | 1994-11-21 | 1 | -2/+5 |
* | lua_lock receives its parameter via stack. | Roberto Ierusalimschy | 1994-11-18 | 1 | -7/+27 |
* | userdata can have different tags | Roberto Ierusalimschy | 1994-11-17 | 1 | -4/+5 |
* | pow operation is defined in mathlib.c | Roberto Ierusalimschy | 1994-11-17 | 1 | -22/+12 |
* | new API functions startblock and endblock | Roberto Ierusalimschy | 1994-11-17 | 1 | -1/+18 |
* | changes in garbage collection control | Roberto Ierusalimschy | 1994-11-17 | 1 | -4/+5 |
* | new module for memory allocation | Roberto Ierusalimschy | 1994-11-16 | 1 | -29/+18 |
* | correction of function 'nextvar' | Roberto Ierusalimschy | 1994-11-16 | 1 | -41/+17 |
* | new API function to create tables | Roberto Ierusalimschy | 1994-11-13 | 1 | -1/+13 |
* | small corrections to avoid 'warings' with acc. | Roberto Ierusalimschy | 1994-11-11 | 1 | -12/+14 |
* | fallback for garbage collection | Roberto Ierusalimschy | 1994-11-10 | 1 | -1/+8 |
* | fallback list moved from opcode.c to fallback.c | Roberto Ierusalimschy | 1994-11-10 | 1 | -63/+11 |
* | execution of 'mains' separated from calls | Roberto Ierusalimschy | 1994-11-09 | 1 | -15/+41 |
* | lock mechanism | Roberto Ierusalimschy | 1994-11-08 | 1 | -2/+12 |
* | new API | Roberto Ierusalimschy | 1994-11-07 | 1 | -17/+68 |
* | new API: lua_Object now is an integer | Roberto Ierusalimschy | 1994-11-07 | 1 | -81/+64 |
* | first implementation of 'fallbacks' | Roberto Ierusalimschy | 1994-11-07 | 1 | -115/+202 |
* | creation of function do_protectedrun, that executes lua code enclosed | Roberto Ierusalimschy | 1994-11-04 | 1 | -220/+96 |
* | new way to call functions, plus several small changes. This is | Roberto Ierusalimschy | 1994-11-02 | 1 | -665/+633 |
* | CREATEARRAY now has an argument, the size of the array to create. | Roberto Ierusalimschy | 1994-11-01 | 1 | -9/+7 |
* | small corrections | Roberto Ierusalimschy | 1994-11-01 | 1 | -6/+4 |
* | new operations POWOP (power) and PUSHMARKMET (for marking method calls). | Waldemar Celes | 1994-10-17 | 1 | -4/+22 |
* | Correcao do tratamento de erro reportado dentro de uma funcao. | Waldemar Celes | 1994-10-11 | 1 | -4/+5 |
* | retirar especificador de formato %n da funcao ToReal e | Waldemar Celes | 1994-09-27 | 1 | -5/+4 |
* | sai strtod, entra sscanf. permite conversao de numeros com espacos em volta. | Waldemar Celes | 1994-09-20 | 1 | -15/+18 |
* | default size for arrays is no more 101, as arrays now can grow. | Waldemar Celes | 1994-09-08 | 1 | -3/+3 |
* | novas funcoes 'gettable' e 'pushtable', nova implementacao do hash e | Waldemar Celes | 1994-08-17 | 1 | -23/+71 |
* | Implementacao da definicao e chamada de METODOS. | Waldemar Celes | 1994-08-05 | 1 | -4/+13 |
* | Implementacao de funcoes para tratar Lua function em C e | Waldemar Celes | 1994-08-03 | 1 | -2/+26 |
* | Uso de arvores binarias para armazenar nomes e realocacao dinamica | Waldemar Celes | 1994-07-19 | 1 | -58/+73 |
* | Implementacao da nova estrategia para armazenar os arrays | Waldemar Celes | 1994-04-20 | 1 | -5/+5 |
* | Alteracao para retirar codificacao de NOP's, substituindo | Waldemar Celes | 1994-04-13 | 1 | -35/+63 |
* | Acrescentar o include do gerenciador de memoria "mm". | Waldemar Celes | 1994-03-28 | 1 | -1/+3 |
* | otimizacao do codigo para construtores. | Roberto Ierusalimschy | 1994-02-13 | 1 | -32/+53 |
* | LUA intermediate code interpreter | Waldemar Celes | 1993-12-17 | 1 | -2/+39 |