summaryrefslogtreecommitdiff
path: root/lua.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* new function "lua_next" (+ new implementation for "next")Roberto Ierusalimschy1999-02-231-1/+3
|
* new function lua_nextvarRoberto Ierusalimschy1999-02-221-1/+2
|
* new year for Copyright.Roberto Ierusalimschy1999-02-091-3/+3
|
* no need to define functions for macros...Roberto Ierusalimschy1999-01-261-10/+2
|
* details (for regularity)Roberto Ierusalimschy1998-12-151-4/+4
|
* new implementation for error handling: on error, function _ERRORMESSAGERoberto Ierusalimschy1998-08-211-3/+4
| | | | is called, which in turn calls _ALERT to write a message to stderr.
* detailsRoberto Ierusalimschy1998-06-181-2/+2
|
* "lua_dobuffer" gets an extra argument, with the chunk nameRoberto Ierusalimschy1998-06-151-2/+2
|
* new copyright noticeRoberto Ierusalimschy1998-06-061-34/+38
|
* name: lua_pushCclosure -> lua_pushcclosure.Roberto Ierusalimschy1998-06-051-3/+3
|
* API for functions to manipulate global state.Roberto Ierusalimschy1998-06-021-1/+6
|
* number type in Lua changed for double (by default).Roberto Ierusalimschy1998-05-181-2/+2
|
* new names for "lua_pushlstr" and "lua_getstrlen"Roberto Ierusalimschy1998-03-061-3/+3
|
* support for strings with '\0'Roberto Ierusalimschy1998-03-061-1/+3
|
* usefull macros also available as functionsRoberto Ierusalimschy1998-02-121-2/+9
|
* back to upavalues as extra arguments for C closures; this way it'sRoberto Ierusalimschy1998-01-071-2/+1
| | | | trivial to make currying.
* LUA_COMPAT2.5 may use #ifdef instead of #ifRoberto Ierusalimschy1998-01-021-7/+3
|
* back to "lua_upvalue"... (seems better choice)Roberto Ierusalimschy1997-12-181-1/+2
|
* new yearRoberto Ierusalimschy1997-12-151-4/+4
|
* new API function and built-in "lua_copytagmethods"Roberto Ierusalimschy1997-12-111-1/+3
|
* details (mainly error messages)Roberto Ierusalimschy1997-12-091-3/+5
|
* first version of "lua_close"Roberto Ierusalimschy1997-12-011-1/+2
|
* other access method for C upvalues (as arguments)Roberto Ierusalimschy1997-11-271-3/+2
|
* no more 'globalbag'Roberto Ierusalimschy1997-11-271-3/+1
|
* small details by lint.Roberto Ierusalimschy1997-11-261-3/+3
|
* first implementation of centralized global state.Roberto Ierusalimschy1997-11-191-1/+3
|
* "lua_open": now lua has an explicit open operation.Roberto Ierusalimschy1997-11-041-3/+6
|
* first version of Cclosures.Roberto Ierusalimschy1997-10-241-2/+4
|
* main header fileRoberto Ierusalimschy1997-09-161-5/+37
|
* new #define LUA_COMPAT2_5 to select "compatibility mode".Roberto Ierusalimschy1997-06-231-6/+11
|
* new interface to "lua_seterrormethod" and "lua_settagmethod", toRoberto Ierusalimschy1997-06-191-3/+3
| | | | allow the use of Lua functions too.
* #if wraps compatibility issueRoberto Ierusalimschy1997-06-181-5/+14
|
* "lua_seterrormethod" should return the previous handler.Roberto Ierusalimschy1997-06-161-2/+2
|
* functions "lua_settagmethod" and similars should be safe too.Roberto Ierusalimschy1997-06-121-6/+3
|
* new implementation for udata (again they are just void *);Roberto Ierusalimschy1997-06-091-8/+11
| | | | | 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-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-261-1/+4
|
* missing definition of "lua_storesubscript", for compatibilityRoberto Ierusalimschy1997-04-151-3/+5
|
* better error messages;Roberto Ierusalimschy1997-04-041-14/+16
| | | | better names for some API functions.
* obs: version 4 is due to internal methods.Roberto Ierusalimschy1997-04-031-4/+4
| | | | (some small details in comments)
* new function "getintmethod"Roberto Ierusalimschy1997-04-021-1/+2
|
* "newtag" does not need a type name.Roberto Ierusalimschy1997-04-021-2/+2
|
* lua_getuserdata must return NULL if object is not userdataRoberto Ierusalimschy1997-04-021-4/+4
|
* "storeglobal" changed to "setglobal"Roberto Ierusalimschy1997-04-011-5/+6
|
* first version of "setglobal" and "getglobal" internal methods.Roberto Ierusalimschy1997-03-311-2/+2
|
* first full implementation of internal methodsRoberto Ierusalimschy1997-03-191-13/+7
|
* new module 'auxlib' centralizes functions to get/check parameters.Roberto Ierusalimschy1997-03-171-1/+12
|
* first step in implementing internal methods.Roberto Ierusalimschy1997-02-261-10/+20
|
* lua_Type is private (preparation for tags)Roberto Ierusalimschy1997-02-201-26/+9
|
* userdata can handle arbitrary binary data;Roberto Ierusalimschy1997-02-111-2/+5
| | | | user tag is stored with data;