Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | uses "isatty" to check if executes stdin line by line or as a file. | Roberto Ierusalimschy | 1995-10-23 | 1 | -1/+12 |
| | |||||
* | small changes in the format of debug information. | Roberto Ierusalimschy | 1995-10-23 | 2 | -8/+13 |
| | |||||
* | small bug | Roberto Ierusalimschy | 1995-10-17 | 1 | -2/+2 |
| | |||||
* | function "setfallback" now gives an error if called with wrong parameters. | Roberto Ierusalimschy | 1995-10-17 | 2 | -9/+8 |
| | |||||
* | new module luadebug.h. | Roberto Ierusalimschy | 1995-10-17 | 4 | -10/+42 |
| | |||||
* | module to declare API for debuging. | Roberto Ierusalimschy | 1995-10-17 | 1 | -0/+19 |
| | |||||
* | new style for debug information about functions: no more SETFUNCTION | Roberto Ierusalimschy | 1995-10-17 | 8 | -214/+121 |
| | | | | | | | | 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. | ||||
* | 'nextvar' now traverses the symbol array, instead of the constant tree. | Roberto Ierusalimschy | 1995-10-17 | 2 | -32/+14 |
| | |||||
* | 'luaI_travfallbacks' now can look for a fallback. | Roberto Ierusalimschy | 1995-10-17 | 2 | -7/+9 |
| | |||||
* | new function "luaI_findconstantbyname". | Roberto Ierusalimschy | 1995-10-13 | 4 | -10/+16 |
| | |||||
* | bug. "fgets" reads n-1 chars. | Roberto Ierusalimschy | 1995-10-11 | 1 | -2/+2 |
| | |||||
* | new module "func", for GC of functions, | Roberto Ierusalimschy | 1995-10-09 | 1 | -15/+25 |
| | | | | and new "defines" for configuration setup. | ||||
* | bug: stack overflow error must leave space on the stack for error function. | Roberto Ierusalimschy | 1995-10-09 | 1 | -5/+3 |
| | |||||
* | fallback table now has number of parameters and results of each | Roberto Ierusalimschy | 1995-10-09 | 2 | -11/+14 |
| | | | | fallback. This information is used by opcode.c, when calling a fallback. | ||||
* | "docall" now assumes that called function is always on the stack, just | Roberto Ierusalimschy | 1995-10-09 | 1 | -75/+101 |
| | | | | | | below "base". That gives more regularity for the stack shape, and prevents fallbacks of being garbage collected if they are redefined during execution. | ||||
* | lua function "type" now returns the string "function" both for lua | Roberto Ierusalimschy | 1995-10-09 | 1 | -4/+2 |
| | | | | functions and c functions. | ||||
* | new functions: "ascii" and "int2str", | Roberto Ierusalimschy | 1995-10-09 | 1 | -67/+92 |
| | | | | small "re-engineering" on parameter checking. | ||||
* | small "re-engineering" on parameter checking. | Roberto Ierusalimschy | 1995-10-09 | 1 | -145/+42 |
| | | | | correction of function "atan2". | ||||
* | new command line options: -v to print Copyright message, and | Roberto Ierusalimschy | 1995-10-06 | 1 | -8/+14 |
| | | | | - to read stdin. | ||||
* | definitions for Copyright and version notices | Roberto Ierusalimschy | 1995-10-06 | 1 | -1/+6 |
| | |||||
* | nova forma de comentarios: de '#' ate' fim de linha (para uso de lua | Roberto Ierusalimschy | 1995-10-06 | 1 | -2/+3 |
| | | | | como shell) | ||||
* | Garbage collection of functions + header structure for functions | Roberto Ierusalimschy | 1995-10-04 | 8 | -36/+56 |
| | |||||
* | Module to manipulate function headers. | Roberto Ierusalimschy | 1995-10-04 | 2 | -0/+79 |
| | |||||
* | new option for "writeto" and "readfrom", to allow piped I/O on | Roberto Ierusalimschy | 1995-10-04 | 1 | -31/+38 |
| | | | | machines that support it. | ||||
* | new function "atan2". | Roberto Ierusalimschy | 1995-10-04 | 1 | -1/+15 |
| | |||||
* | small correction to avoid problems with DOS/Windows | Roberto Ierusalimschy | 1995-10-03 | 1 | -1/+2 |
| | |||||
* | small corrections to avoid warnings. | Roberto Ierusalimschy | 1995-10-02 | 3 | -13/+15 |
| | |||||
* | buffer for literals now grows dynamically, allowing big programs between [[ ↵ | Roberto Ierusalimschy | 1995-09-15 | 1 | -7/+40 |
| | | | | and ]]. | ||||
* | small corrections to avoid uninitialized global variables. | Roberto Ierusalimschy | 1995-09-15 | 1 | -3/+3 |
| | |||||
* | new syntax for strings: [[ ... ]]. Still in tests, | Roberto Ierusalimschy | 1995-07-06 | 1 | -2/+50 |
| | | | | since the code does not check buffer overflow. | ||||
* | syntax for {...;...} is more flexible now. | Roberto Ierusalimschy | 1995-06-08 | 1 | -10/+21 |
| | |||||
* | 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 | 4 | -16/+30 |
| | |||||
* | calls to "lua_reportbug" changed to "lua_error", since | Roberto Ierusalimschy | 1995-05-02 | 6 | -34/+34 |
| | | | | "lua_reportbug" is only an internal function to build debug information | ||||
* | run-time stack now is controled at run time, instead of | Waldemar Celes | 1995-04-11 | 3 | -86/+108 |
| | | | | compilation time. | ||||
* | function "type" now returns a second result: the tag of the type, | Roberto Ierusalimschy | 1995-03-17 | 1 | -2/+5 |
| | | | | so lua can discriminate different kinds of user data. | ||||
* | error message buffer got a bigger size | Waldemar Celes | 1995-03-17 | 1 | -3/+3 |
| | |||||
* | adjust checks if stack has enough space | Roberto Ierusalimschy | 1995-02-10 | 1 | -2/+4 |
| | |||||
* | included string.hv2.1 | Luiz Henrique de Figueiredo | 1995-02-07 | 1 | -1/+2 |
| | |||||
* | new function for copy strings (strdup is not ANSI) | Roberto Ierusalimschy | 1995-02-06 | 1 | -5/+16 |
| | |||||
* | better approximation for PI | Roberto Ierusalimschy | 1995-02-06 | 1 | -2/+2 |
| | |||||
* | function "stat" needs "sys/types.h" | Roberto Ierusalimschy | 1995-02-06 | 1 | -1/+2 |
| | |||||
* | header "stdlib.h" was missing (gcc does not warn that) | Roberto Ierusalimschy | 1995-02-06 | 1 | -1/+2 |
| | |||||
* | header "string.h" was missing (gcc does not warn that) | Roberto Ierusalimschy | 1995-02-06 | 3 | -3/+7 |
| | |||||
* | type names changed to avoid clashes | Roberto Ierusalimschy | 1995-02-06 | 1 | -1/+4 |
| | |||||
* | a null lua_Object is LUA_NOOBJECT, not NULL. | Roberto Ierusalimschy | 1995-02-02 | 2 | -10/+11 |
| | |||||
* | use yacc++ instead of yacc. | Roberto Ierusalimschy | 1995-02-02 | 2 | -6/+3 |
| | |||||
* | libs should not use Lua internal functions (like mem.h). | Roberto Ierusalimschy | 1995-02-02 | 1 | -13/+12 |
| | | | | a null lua_Object is LUA_NOOBJECT, not NULL. | ||||
* | new API function lua_pushlocked & lua_checkstack is a macro | Waldemar Celes | 1995-01-27 | 1 | -16/+23 |
| | |||||
* | new API function lua_pushlocked | Waldemar Celes | 1995-01-27 | 1 | -1/+2 |
| |