summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* there is no need of predefined constants.Roberto Ierusalimschy1994-11-031-14/+4
|
* RESET is generated at codereturn.Roberto Ierusalimschy1994-11-031-4/+2
|
* because lua_error now does a longjmp, many functions do not needRoberto Ierusalimschy1994-11-031-40/+14
| | | | to check conditions.
* function 'lua_addfile' returns an error messageRoberto Ierusalimschy1994-11-032-14/+8
|
* prototype for function 'yylex'Roberto Ierusalimschy1994-11-031-38/+3
|
* new way to call functions, plus several small changes. This isRoberto Ierusalimschy1994-11-024-781/+777
| | | | a temporary version!
* tags T_NIL, etc, changed to LUA_T_NIL, etcRoberto Ierusalimschy1994-11-022-11/+87
| | | | some lua_ functions changed form opcode.c to here
* tags T_NIL, etc, changed to LUA_T_NIL, etcRoberto Ierusalimschy1994-11-022-40/+40
|
* frees filename from file stackRoberto Ierusalimschy1994-11-021-2/+2
|
* CREATEARRAY now has an argument, the size of the array to create.Roberto Ierusalimschy1994-11-012-14/+18
|
* small correctionsRoberto Ierusalimschy1994-11-013-18/+6
|
* deletion of 'include mm.h'Roberto Ierusalimschy1994-10-212-42/+1
|
* implementacao das funcoes 'date', 'time' e 'beep'.Waldemar Celes1994-10-191-4/+46
| | | | troca de nome de 'abort' para 'exit'
* deletion of 'include mm.h'Roberto Ierusalimschy1994-10-183-10/+3
|
* new parameter in function 'tree_create'. Maybe we will return toWaldemar Celes1994-10-181-7/+21
| | | | version 1.1
* split to 'ugly.h'.Waldemar Celes1994-10-181-24/+7
|
* definition of ugly tokensWaldemar Celes1994-10-181-0/+24
|
* remove of 'printf' for debuging.Roberto Ierusalimschy1994-10-171-3/+1
|
* power operator (^).Waldemar Celes1994-10-171-50/+37
| | | | | | no more contructors (@). methods can be called on indexed variables. fixed debuging information.
* files end with EOF, instead of 0.Waldemar Celes1994-10-171-5/+3
|
* adaptative garbage collection.Waldemar Celes1994-10-173-9/+14
|
* new algorithm for reading floats.Waldemar Celes1994-10-171-14/+35
| | | | files end with EOF, instead of 0.
* new operations POWOP (power) and PUSHMARKMET (for marking method calls).Waldemar Celes1994-10-172-6/+25
| | | | remove of operation PUSHOBJECT.
* Aumentar buffer para saida.Waldemar Celes1994-10-131-2/+2
|
* Acertar bug para evitar formato "%5.0s", por exemplo.Waldemar Celes1994-10-131-3/+3
|
* Correcao do tratamento de erro reportado dentro de uma funcao.Waldemar Celes1994-10-114-14/+16
|
* Implementacao das funcoes para conversao de angulos rad r deg.Waldemar Celes1994-10-111-1/+27
|
* Mudancas na sintaxe para a versao 2.0. Igual relacional passaWaldemar Celes1994-10-111-62/+42
| | | | | | | a ser ==, tiramos o colchete na criacao de tabelas usando apenas chaves (podendo fazer inicializacao mista). O caracter @ so' deve estar presente quando se tem construtores associados. /
* implementacao de busca no campo godparent em substituicaoWaldemar Celes1994-10-111-72/+46
| | | | ao campo parents.
* consertar bug no formato real com zero casas decimais eWaldemar Celes1994-10-071-3/+36
| | | | implementar a funcao readuntil.
* retirar especificador de formato %n da funcao ToReal eWaldemar Celes1994-09-271-5/+4
| | | | acertar funcao lua_convtonumber.
* Mudancas para tornar lex.c um modulo independente dos outrosWaldemar Celes1994-09-261-24/+34
| | | | modulos de Lua
* added support for ugly tokensLuiz Henrique de Figueiredo1994-09-221-18/+65
|
* sai strtod, entra sscanf. permite conversao de numeros com espacos em volta.Waldemar Celes1994-09-201-15/+18
|
* acertar bug no formato de string.Waldemar Celes1994-09-121-5/+6
|
* default size for arrays is no more 101, as arrays now can grow.Waldemar Celes1994-09-081-3/+3
|
* new field 'next' in struct 'Hash', to list tables for garbage collection.Waldemar Celes1994-09-081-1/+2
|
* Implementacao de heranca multipla.Waldemar Celes1994-09-081-15/+53
|
* Alteracao do buffer de funcao de 32 para 64.Waldemar Celes1994-09-051-2/+2
|
* escapes \' e \" em strings; correcao do escape \\Waldemar Celes1994-09-051-2/+7
|
* Compatibilizacao com C++.Waldemar Celes1994-08-242-2/+21
|
* nova funcao 'debug', para auxiliar debugacao de programas lua.Roberto Ierusalimschy1994-08-171-1/+17
|
* inclui 'lua.h' que contem prototipos das funcoes 'lua_errorfunction' eRoberto Ierusalimschy1994-08-171-1/+2
| | | | 'lua_error'.
* Implementacao da macro 'lua_strcmp'Waldemar Celes1994-08-171-4/+10
|
* Alteracao na macro 'streq'Waldemar Celes1994-08-171-2/+2
|
* inclusao de 'lualib.h' para ter prototipos das funcoes deWaldemar Celes1994-08-172-2/+4
| | | | 'iolib_open' e 'strlib_open'.
* novas funcoes 'gettable' e 'pushtable'.Waldemar Celes1994-08-171-4/+7
|
* heranca e nova implementacao do hash.Waldemar Celes1994-08-171-9/+21
|
* novas funcoes 'gettable' e 'pushtable', nova implementacao do hash eWaldemar Celes1994-08-171-23/+71
| | | | heranca nas indexacoes.
* Implementacao das funcoes 'log', 'log10' e 'exp'.Waldemar Celes1994-08-151-1/+41
|