Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | using "zio" for parsing Lua code. | Roberto Ierusalimschy | 1997-06-16 | 9 | -202/+149 |
| | |||||
* | library for uniform buffered input. | Roberto Ierusalimschy | 1997-06-16 | 2 | -0/+164 |
| | |||||
* | functions "lua_settagmethod" and similars should be safe too. | Roberto Ierusalimschy | 1997-06-12 | 2 | -17/+18 |
| | |||||
* | missing small dependency. | Roberto Ierusalimschy | 1997-06-11 | 1 | -2/+2 |
| | |||||
* | BUG: did not handle properly pragmas $endinput/$debug inside a $if. | Roberto Ierusalimschy | 1997-06-11 | 1 | -36/+44 |
| | |||||
* | small 'improvement' | Roberto Ierusalimschy | 1997-06-11 | 1 | -3/+2 |
| | |||||
* | format more uniform, to facilitate filters .tex->.html | Roberto Ierusalimschy | 1997-06-09 | 1 | -249/+256 |
| | |||||
* | power method (^) acts only in numbers. | Roberto Ierusalimschy | 1997-06-09 | 1 | -2/+3 |
| | |||||
* | udata is just void * again, so there is no point for function "getbyte". | Roberto Ierusalimschy | 1997-06-09 | 1 | -45/+0 |
| | |||||
* | new function "testC", to help debug the API. | Roberto Ierusalimschy | 1997-06-09 | 1 | -1/+71 |
| | |||||
* | new implementation for udata (again they are just void *); | Roberto Ierusalimschy | 1997-06-09 | 7 | -136/+163 |
| | | | | | new implementation for the API: most operations now do not disturb structures lua2C and C2lua. | ||||
* | new lua_Objects are created below the C2lua stack, so most API functions | Roberto Ierusalimschy | 1997-06-06 | 1 | -52/+53 |
| | | | | don't need to adjust stack. | ||||
* | new lua_Objects are created below the C2lua stack, so most API functions | Roberto Ierusalimschy | 1997-06-06 | 1 | -2/+3 |
| | | | | | don't need to adjust stack. So lua_getref does not change the stack, and lua_pushref can use it as a macro. | ||||
* | new API function to force garbage collection. | Roberto Ierusalimschy | 1997-05-26 | 3 | -8/+18 |
| | |||||
* | unused declaration. | Roberto Ierusalimschy | 1997-05-26 | 1 | -2/+1 |
| | |||||
* | another (better?) implementation for "pushsubscript". | Roberto Ierusalimschy | 1997-05-26 | 1 | -10/+16 |
| | |||||
* | new implementation of gc: "Pre-collect" garbage in temporary lists and | Roberto Ierusalimschy | 1997-05-14 | 7 | -87/+121 |
| | | | | then call fallbacks. | ||||
* | double hashing + tables do not grow if there are empty slots | Roberto Ierusalimschy | 1997-05-08 | 1 | -83/+94 |
| | |||||
* | bug: string table must be initialized. | Roberto Ierusalimschy | 1997-05-05 | 1 | -3/+15 |
| | |||||
* | correction of name (and "iternal" was wrong, any way). | Roberto Ierusalimschy | 1997-04-30 | 1 | -1/+1 |
| | |||||
* | small optimization in the access to i.m. table. | Roberto Ierusalimschy | 1997-04-24 | 3 | -40/+49 |
| | |||||
* | BUG: input file must be closed just after parser. | Roberto Ierusalimschy | 1997-04-15 | 2 | -20/+15 |
| | |||||
* | missing definition of "lua_storesubscript", for compatibility | Roberto Ierusalimschy | 1997-04-15 | 1 | -3/+5 |
| | |||||
* | new pragma "$endinput" | Roberto Ierusalimschy | 1997-04-14 | 1 | -4/+7 |
| | |||||
* | global variables (in $if) may have '_'. | Roberto Ierusalimschy | 1997-04-14 | 1 | -3/+3 |
| | |||||
* | function name is only needed *if* there is an error. | Roberto Ierusalimschy | 1997-04-14 | 1 | -5/+5 |
| | |||||
* | mem.h is now luamem.hv3.0-alpha | Luiz Henrique de Figueiredo | 1997-04-14 | 1 | -23/+23 |
| | | | | | | removed warn added support for new opcodes (VARARGS, STOREMAP) better error messages with luaL_verror | ||||
* | fix comment in VERSION | Luiz Henrique de Figueiredo | 1997-04-14 | 1 | -2/+2 |
| | |||||
* | nested "$if's", "$else", and "$if" constants (nil & 1). | Roberto Ierusalimschy | 1997-04-12 | 1 | -39/+103 |
| | |||||
* | correction on comments about opcodes. | Roberto Ierusalimschy | 1997-04-11 | 1 | -14/+14 |
| | |||||
* | one cannot "create" a userdata. | Roberto Ierusalimschy | 1997-04-08 | 1 | -2/+2 |
| | |||||
* | first implementation of "$if"; | Roberto Ierusalimschy | 1997-04-07 | 6 | -73/+139 |
| | | | | new function "findstring" (useful in good places) | ||||
* | detail: local names | Roberto Ierusalimschy | 1997-04-06 | 1 | -5/+5 |
| | |||||
* | detail: better way to put a "..." in message. | Roberto Ierusalimschy | 1997-04-06 | 1 | -3/+3 |
| | |||||
* | luaL check functions do not need the function name (it can be | Roberto Ierusalimschy | 1997-04-06 | 10 | -125/+129 |
| | | | | accessed via luadebug interface). | ||||
* | better error messages; | Roberto Ierusalimschy | 1997-04-04 | 10 | -100/+107 |
| | | | | better names for some API functions. | ||||
* | using new lib auxlib. | Roberto Ierusalimschy | 1997-04-04 | 2 | -30/+18 |
| | |||||
* | "setintmethod" returns old method (to be coerent with seterrormethod). | Roberto Ierusalimschy | 1997-04-03 | 1 | -5/+5 |
| | | | | | BUG: wrong pointer arithmetic (index out of range when comparing). obs: version 4 is due to internal methods. | ||||
* | obs: version 4 is due to internal methods. | Roberto Ierusalimschy | 1997-04-03 | 1 | -4/+4 |
| | | | | (some small details in comments) | ||||
* | "setintmethod" returns old method (to be coerent with seterrormethod). | Roberto Ierusalimschy | 1997-04-03 | 1 | -1/+2 |
| | | | | obs: version 2 is due to internal methods. | ||||
* | new function "getintmethod" | Roberto Ierusalimschy | 1997-04-02 | 6 | -10/+30 |
| | |||||
* | "tostring" gives an overview of a userdata. | Roberto Ierusalimschy | 1997-04-02 | 1 | -12/+37 |
| | |||||
* | "newtag" does not need a type name. | Roberto Ierusalimschy | 1997-04-02 | 4 | -49/+25 |
| | |||||
* | lua_getuserdata must return NULL if object is not userdata | Roberto Ierusalimschy | 1997-04-02 | 1 | -4/+4 |
| | |||||
* | lua_getuserdata must return NULL if object is not userdata; | Roberto Ierusalimschy | 1997-04-02 | 1 | -4/+12 |
| | | | | small BUG: wrong error message for a=b[1] (b not a table) | ||||
* | "getbyte" returns userdata size when called without second parameter. | Roberto Ierusalimschy | 1997-04-02 | 1 | -6/+10 |
| | |||||
* | small "bugs" detected by Purify: cannot read "next" after 0. | Roberto Ierusalimschy | 1997-04-01 | 1 | -4/+6 |
| | |||||
* | small "bugs" detected by Purify: some blocks may be smaller than | Roberto Ierusalimschy | 1997-04-01 | 1 | -2/+2 |
| | | | | sizeof(int). | ||||
* | "storeglobal" changed to "setglobal" | Roberto Ierusalimschy | 1997-04-01 | 3 | -14/+15 |
| | |||||
* | new lua function "tag" | Roberto Ierusalimschy | 1997-04-01 | 1 | -1/+7 |
| |