aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* "lua_getobjname" must return "tag-method" and not "fallback".Roberto Ierusalimschy1997-06-172-3/+3
|
* "nil" may have fallbacks too.Roberto Ierusalimschy1997-06-171-7/+7
|
* "strsub" accepts negative indices (count from the end of the string).Roberto Ierusalimschy1997-06-161-3/+6
|
* "lua_seterrormethod" should return the previous handler.Roberto Ierusalimschy1997-06-162-5/+6
|
* default error method is not nil (nil does nothing).Roberto Ierusalimschy1997-06-161-2/+9
|
* "order" and "concat" operations choose tag methods the same way thatRoberto Ierusalimschy1997-06-161-31/+13
| | | | "arith" operations do (first the first parameter, etc).
* using "zio" for parsing Lua code.Roberto Ierusalimschy1997-06-169-202/+149
|
* library for uniform buffered input.Roberto Ierusalimschy1997-06-162-0/+164
|
* functions "lua_settagmethod" and similars should be safe too.Roberto Ierusalimschy1997-06-122-17/+18
|
* missing small dependency.Roberto Ierusalimschy1997-06-111-2/+2
|
* BUG: did not handle properly pragmas $endinput/$debug inside a $if.Roberto Ierusalimschy1997-06-111-36/+44
|
* small 'improvement'Roberto Ierusalimschy1997-06-111-3/+2
|
* format more uniform, to facilitate filters .tex->.htmlRoberto Ierusalimschy1997-06-091-249/+256
|
* power method (^) acts only in numbers.Roberto Ierusalimschy1997-06-091-2/+3
|
* udata is just void * again, so there is no point for function "getbyte".Roberto Ierusalimschy1997-06-091-45/+0
|
* new function "testC", to help debug the API.Roberto Ierusalimschy1997-06-091-1/+71
|
* new implementation for udata (again they are just void *);Roberto Ierusalimschy1997-06-097-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 functionsRoberto Ierusalimschy1997-06-061-52/+53
| | | | don't need to adjust stack.
* new lua_Objects are created below the C2lua stack, so most API functionsRoberto Ierusalimschy1997-06-061-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 Ierusalimschy1997-05-263-8/+18
|
* unused declaration.Roberto Ierusalimschy1997-05-261-2/+1
|
* another (better?) implementation for "pushsubscript".Roberto Ierusalimschy1997-05-261-10/+16
|
* new implementation of gc: "Pre-collect" garbage in temporary lists andRoberto Ierusalimschy1997-05-147-87/+121
| | | | then call fallbacks.
* double hashing + tables do not grow if there are empty slotsRoberto Ierusalimschy1997-05-081-83/+94
|
* bug: string table must be initialized.Roberto Ierusalimschy1997-05-051-3/+15
|
* correction of name (and "iternal" was wrong, any way).Roberto Ierusalimschy1997-04-301-1/+1
|
* small optimization in the access to i.m. table.Roberto Ierusalimschy1997-04-243-40/+49
|
* BUG: input file must be closed just after parser.Roberto Ierusalimschy1997-04-152-20/+15
|
* missing definition of "lua_storesubscript", for compatibilityRoberto Ierusalimschy1997-04-151-3/+5
|
* new pragma "$endinput"Roberto Ierusalimschy1997-04-141-4/+7
|
* global variables (in $if) may have '_'.Roberto Ierusalimschy1997-04-141-3/+3
|
* function name is only needed *if* there is an error.Roberto Ierusalimschy1997-04-141-5/+5
|
* mem.h is now luamem.hv3.0-alphaLuiz Henrique de Figueiredo1997-04-141-23/+23
| | | | | | removed warn added support for new opcodes (VARARGS, STOREMAP) better error messages with luaL_verror
* fix comment in VERSIONLuiz Henrique de Figueiredo1997-04-141-2/+2
|
* nested "$if's", "$else", and "$if" constants (nil & 1).Roberto Ierusalimschy1997-04-121-39/+103
|
* correction on comments about opcodes.Roberto Ierusalimschy1997-04-111-14/+14
|
* one cannot "create" a userdata.Roberto Ierusalimschy1997-04-081-2/+2
|
* first implementation of "$if";Roberto Ierusalimschy1997-04-076-73/+139
| | | | new function "findstring" (useful in good places)
* detail: local namesRoberto Ierusalimschy1997-04-061-5/+5
|
* detail: better way to put a "..." in message.Roberto Ierusalimschy1997-04-061-3/+3
|
* luaL check functions do not need the function name (it can beRoberto Ierusalimschy1997-04-0610-125/+129
| | | | accessed via luadebug interface).
* better error messages;Roberto Ierusalimschy1997-04-0410-100/+107
| | | | better names for some API functions.
* using new lib auxlib.Roberto Ierusalimschy1997-04-042-30/+18
|
* "setintmethod" returns old method (to be coerent with seterrormethod).Roberto Ierusalimschy1997-04-031-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 Ierusalimschy1997-04-031-4/+4
| | | | (some small details in comments)
* "setintmethod" returns old method (to be coerent with seterrormethod).Roberto Ierusalimschy1997-04-031-1/+2
| | | | obs: version 2 is due to internal methods.
* new function "getintmethod"Roberto Ierusalimschy1997-04-026-10/+30
|
* "tostring" gives an overview of a userdata.Roberto Ierusalimschy1997-04-021-12/+37
|
* "newtag" does not need a type name.Roberto Ierusalimschy1997-04-024-49/+25
|
* lua_getuserdata must return NULL if object is not userdataRoberto Ierusalimschy1997-04-021-4/+4
|