Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | 1 | -17/+17 |
| | | | | accessed via luadebug interface). | ||||
* | better error messages; | Roberto Ierusalimschy | 1997-04-04 | 1 | -24/+23 |
| | | | | better names for some API functions. | ||||
* | new function "getintmethod" | Roberto Ierusalimschy | 1997-04-02 | 1 | -1/+2 |
| | |||||
* | "tostring" gives an overview of a userdata. | Roberto Ierusalimschy | 1997-04-02 | 1 | -12/+37 |
| | |||||
* | "storeglobal" changed to "setglobal" | Roberto Ierusalimschy | 1997-04-01 | 1 | -3/+3 |
| | |||||
* | new lua function "tag" | Roberto Ierusalimschy | 1997-04-01 | 1 | -1/+7 |
| | |||||
* | first version of "setglobal" and "getglobal" internal methods. | Roberto Ierusalimschy | 1997-03-31 | 1 | -7/+23 |
| | |||||
* | new name for old "mem.h" (conflicts with some compiler libraries) | Roberto Ierusalimschy | 1997-03-31 | 1 | -2/+2 |
| | |||||
* | luaI_type moved to fallback.c | Roberto Ierusalimschy | 1997-03-20 | 1 | -29/+1 |
| | |||||
* | first full implementation of internal methods | Roberto Ierusalimschy | 1997-03-19 | 1 | -1/+3 |
| | |||||
* | new module 'auxlib' centralizes functions to get/check parameters. | Roberto Ierusalimschy | 1997-03-17 | 1 | -46/+15 |
| | |||||
* | "tag" changed to "ttype" (since now tag has other meaning) | Roberto Ierusalimschy | 1997-03-11 | 1 | -3/+3 |
| | |||||
* | first step in implementing internal methods. | Roberto Ierusalimschy | 1997-02-26 | 1 | -64/+141 |
| | |||||
* | lua_linenumber is initialized in lex.c | Roberto Ierusalimschy | 1996-09-25 | 1 | -3/+1 |
| | |||||
* | "call" returns separate results, instead of a table. | Roberto Ierusalimschy | 1996-09-24 | 1 | -13/+4 |
| | |||||
* | "dofile" and "dostring" may return values. | Roberto Ierusalimschy | 1996-09-24 | 1 | -6/+17 |
| | |||||
* | "dostring" now stores the prefix of its string, to improve error messages. | Roberto Ierusalimschy | 1996-09-11 | 1 | -5/+11 |
| | |||||
* | BUG: a program ending in a comment without EOL made lex loops forever. | Roberto Ierusalimschy | 1996-09-09 | 1 | -2/+3 |
| | |||||
* | C functions don't need to "pushnil" to return nil value (this is | Roberto Ierusalimschy | 1996-07-12 | 1 | -7/+1 |
| | | | | the default value). | ||||
* | first version of vararg facility (plus new function "call"). | Roberto Ierusalimschy | 1996-05-28 | 1 | -5/+58 |
| | |||||
* | functions "lua_is..." consider coercions. | Roberto Ierusalimschy | 1996-03-19 | 1 | -25/+21 |
| | |||||
* | unused "#include" | Roberto Ierusalimschy | 1996-03-19 | 1 | -2/+1 |
| | |||||
* | "openfile" now returns the file | Roberto Ierusalimschy | 1996-03-15 | 1 | -13/+7 |
| | |||||
* | fixed strings (not collectable) don't need to be inserted in the constant table. | Roberto Ierusalimschy | 1996-02-26 | 1 | -3/+3 |
| | |||||
* | useless #include. | Roberto Ierusalimschy | 1996-02-14 | 1 | -2/+1 |
| | |||||
* | new header "lex.h". | Roberto Ierusalimschy | 1996-02-13 | 1 | -3/+2 |
| | |||||
* | BIG CHANGE: new data structure for constants, strings and globals, using | Roberto Ierusalimschy | 1996-02-12 | 1 | -3/+3 |
| | | | | an array of hash tables for all them. | ||||
* | "lua_debug" now is exported through debug interface (luadebug.h) | Roberto Ierusalimschy | 1996-02-07 | 1 | -2/+1 |
| | |||||
* | "dofile" issues an error when called with non string arguments, and | Roberto Ierusalimschy | 1996-01-26 | 1 | -2/+8 |
| | | | | runs stdin when called without arguments. | ||||
* | "setglobal" and "getglobal" moved to inout.c, as it concentrates pre-defined | Roberto Ierusalimschy | 1996-01-26 | 1 | -9/+30 |
| | | | | | library. new function "assert". | ||||
* | new function "tostring". | Roberto Ierusalimschy | 1996-01-22 | 1 | -19/+32 |
| | |||||
* | new method to keep debug line information: current line is stored on the | Roberto Ierusalimschy | 1995-10-25 | 1 | -3/+2 |
| | | | | | Lua stack, just below (new) base, with tag LUA_T_LINE. SETLINE opcodes are generated by lex. | ||||
* | "dofile" now accepts NULL as parameter, to run stdin. | Roberto Ierusalimschy | 1995-10-23 | 1 | -3/+9 |
| | |||||
* | new style for debug information about functions: no more SETFUNCTION | Roberto Ierusalimschy | 1995-10-17 | 1 | -100/+9 |
| | | | | | | | | 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. | ||||
* | lua function "type" now returns the string "function" both for lua | Roberto Ierusalimschy | 1995-10-09 | 1 | -4/+2 |
| | | | | functions and c functions. | ||||
* | Garbage collection of functions + header structure for functions | Roberto Ierusalimschy | 1995-10-04 | 1 | -2/+2 |
| | |||||
* | new lua function "getstack"; new interface to function luaI_reportbug. | Roberto Ierusalimschy | 1995-05-16 | 1 | -4/+22 |
| | |||||
* | calls to "lua_reportbug" changed to "lua_error", since | Roberto Ierusalimschy | 1995-05-02 | 1 | -13/+6 |
| | | | | "lua_reportbug" is only an internal function to build debug information | ||||
* | 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 |
| | |||||
* | better control of integer types and their limits | Roberto Ierusalimschy | 1994-12-20 | 1 | -11/+11 |
| | |||||
* | new constant LUA_NOOBJECT | Roberto Ierusalimschy | 1994-12-16 | 1 | -3/+3 |
| | |||||
* | new API function 'lua_pushliteral' | Roberto Ierusalimschy | 1994-12-13 | 1 | -8/+8 |
| | |||||
* | garbage collection tag for strings organized in struct TaggedString | Roberto Ierusalimschy | 1994-11-23 | 1 | -2/+2 |
| | |||||
* | debug shows lines where functions were called | Roberto Ierusalimschy | 1994-11-21 | 1 | -28/+42 |
| | |||||
* | unification of symbol tree and constant tree | Roberto Ierusalimschy | 1994-11-14 | 1 | -3/+3 |
| | |||||
* | lua_debugline is kept in the stack 'funcstack' when debugging. | Roberto Ierusalimschy | 1994-11-09 | 1 | -5/+11 |
| | |||||
* | error function for Lua | Roberto Ierusalimschy | 1994-11-08 | 1 | -1/+9 |
| | |||||
* | new API: lua_Object now is an integer | Roberto Ierusalimschy | 1994-11-07 | 1 | -21/+12 |
| |