Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | "call" returns separate results, instead of a table. | Roberto Ierusalimschy | 1996-09-24 | 1 | -18/+12 |
| | |||||
* | "dofile" and "dostring" may return values. | Roberto Ierusalimschy | 1996-09-24 | 1 | -3/+2 |
| | |||||
* | better structure to control stack interface lua-C. | Roberto Ierusalimschy | 1996-09-20 | 1 | -55/+53 |
| | | | | beginblock-endblock keeps better control over stack | ||||
* | functions may have tags CMARK and MARK, too. | Roberto Ierusalimschy | 1996-09-02 | 1 | -4/+9 |
| | |||||
* | skip first line of a lua file if it starts with a '#' (to allow shell | Roberto Ierusalimschy | 1996-08-15 | 1 | -2/+8 |
| | | | | scripts). | ||||
* | "exit" is defined in "stdlib". | Roberto Ierusalimschy | 1996-07-24 | 1 | -1/+2 |
| | |||||
* | "lua_dofile" returns different error codes if it could not open the file | Roberto Ierusalimschy | 1996-06-10 | 1 | -6/+8 |
| | |||||
* | first version of vararg facility (plus new function "call"). | Roberto Ierusalimschy | 1996-05-28 | 1 | -51/+89 |
| | |||||
* | lua_Reference is int, so say so. | Roberto Ierusalimschy | 1996-04-25 | 1 | -4/+4 |
| | |||||
* | lock mechanism seperseded by the REFERENCE mechanism. | Roberto Ierusalimschy | 1996-04-22 | 1 | -20/+26 |
| | |||||
* | smaller limit to stack size (otherwise C stack can finish first)v2.4-beta | Roberto Ierusalimschy | 1996-03-22 | 1 | -2/+6 |
| | |||||
* | a simplification about memory error messages. | Roberto Ierusalimschy | 1996-03-21 | 1 | -2/+2 |
| | |||||
* | better control when growing arrays. | Roberto Ierusalimschy | 1996-03-21 | 1 | -7/+10 |
| | |||||
* | hook variables are global, no more "lua_set...hook" functions. | Roberto Ierusalimschy | 1996-03-20 | 1 | -30/+12 |
| | |||||
* | functions "lua_is..." consider coercions. | Roberto Ierusalimschy | 1996-03-19 | 1 | -8/+22 |
| | | | | small change when calling call hook. | ||||
* | unused "#include" | Roberto Ierusalimschy | 1996-03-19 | 1 | -2/+1 |
| | |||||
* | integration with undump (execution of pre-compiled chuncks) | Roberto Ierusalimschy | 1996-03-15 | 1 | -28/+30 |
| | |||||
* | small change to avoid error on "lua_pushstring(NULL)". | Roberto Ierusalimschy | 1996-03-04 | 1 | -4/+9 |
| | |||||
* | functions "luaI_free" and "luaI_realloc" (or macro "growvector") may be | Roberto Ierusalimschy | 1996-02-22 | 1 | -5/+3 |
| | | | | called with NULL. | ||||
* | BIG CHANGE: new data structure for constants, strings and globals, using | Roberto Ierusalimschy | 1996-02-12 | 1 | -13/+2 |
| | | | | an array of hash tables for all them. | ||||
* | new type lua_Function for activation records | Roberto Ierusalimschy | 1996-02-08 | 1 | -5/+5 |
| | |||||
* | debug interface functions to manipulated local variables: | Roberto Ierusalimschy | 1996-02-07 | 1 | -3/+34 |
| | | | | "lua_getlocal" and "lua_setlocal". | ||||
* | new fallback "getglobal". | Roberto Ierusalimschy | 1996-01-30 | 1 | -6/+15 |
| | |||||
* | "dofile" does not issue a warning when unable to open the file, | Roberto Ierusalimschy | 1996-01-23 | 1 | -6/+2 |
| | | | | but only returns an error code. | ||||
* | hooks for line change and function calls; first version. | Roberto Ierusalimschy | 1996-01-09 | 1 | -7/+81 |
| | |||||
* | bug: luaI_findconstantbyname may change the value of lua_constant. | Roberto Ierusalimschy | 1995-12-18 | 1 | -2/+3 |
| | |||||
* | useless "#include math.h"v2.2 | Roberto Ierusalimschy | 1995-11-16 | 1 | -2/+1 |
| | |||||
* | little improvement | Roberto Ierusalimschy | 1995-11-10 | 1 | -5/+2 |
| | |||||
* | functions now may be declared with any "var" as a name; | Roberto Ierusalimschy | 1995-10-26 | 1 | -8/+3 |
| | | | | | therefore they do not have a "baptism" name. Changes in debug API to acomodate that. | ||||
* | new method to keep debug line information: current line is stored on the | Roberto Ierusalimschy | 1995-10-25 | 1 | -30/+30 |
| | | | | | Lua stack, just below (new) base, with tag LUA_T_LINE. SETLINE opcodes are generated by lex. | ||||
* | function "setfallback" now gives an error if called with wrong parameters. | Roberto Ierusalimschy | 1995-10-17 | 1 | -3/+5 |
| | |||||
* | new module luadebug.h. | Roberto Ierusalimschy | 1995-10-17 | 1 | -3/+4 |
| | |||||
* | new style for debug information about functions: no more SETFUNCTION | Roberto Ierusalimschy | 1995-10-17 | 1 | -25/+34 |
| | | | | | | | | 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 | -2/+2 |
| | |||||
* | bug: stack overflow error must leave space on the stack for error function. | Roberto Ierusalimschy | 1995-10-09 | 1 | -5/+3 |
| | |||||
* | "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. | ||||
* | Garbage collection of functions + header structure for functions | Roberto Ierusalimschy | 1995-10-04 | 1 | -9/+13 |
| | |||||
* | small corrections to avoid warnings. | Roberto Ierusalimschy | 1995-10-02 | 1 | -2/+2 |
| | |||||
* | new lua function "getstack"; new interface to function luaI_reportbug. | Roberto Ierusalimschy | 1995-05-16 | 1 | -6/+2 |
| | |||||
* | calls to "lua_reportbug" changed to "lua_error", since | Roberto Ierusalimschy | 1995-05-02 | 1 | -2/+7 |
| | | | | "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 | 1 | -57/+79 |
| | | | | compilation time. | ||||
* | adjust checks if stack has enough space | Roberto Ierusalimschy | 1995-02-10 | 1 | -2/+4 |
| | |||||
* | 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 ↵ | Roberto Ierusalimschy | 1994-12-30 | 1 | -2/+6 |
| | | | | machines | ||||
* | 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 ↵ | Waldemar Celes | 1994-12-27 | 1 | -14/+6 |
| | | | | efficiency) | ||||
* | 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 |
| |