Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | "strfind" has an extra parameter to turn off all special characteres. | Roberto Ierusalimschy | 1996-10-31 | 1 | -2/+3 | |
| | ||||||
* | some compilers do not accept "stdin"/"stdout" as constants. | Roberto Ierusalimschy | 1996-10-16 | 1 | -2/+3 | |
| | ||||||
* | documentation of opcode meanings (thanks to lhf) | Roberto Ierusalimschy | 1996-09-26 | 1 | -53/+76 | |
| | ||||||
* | new way to handle pragmas (at the lexical level, instead of parsing). | Roberto Ierusalimschy | 1996-09-25 | 2 | -35/+35 | |
| | ||||||
* | 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 | 3 | -33/+17 | |
| | ||||||
* | "dofile" and "dostring" may return values. | Roberto Ierusalimschy | 1996-09-24 | 3 | -15/+27 | |
| | ||||||
* | a chunk may end with a return. | Roberto Ierusalimschy | 1996-09-24 | 1 | -6/+7 | |
| | ||||||
* | new function "strrep" | Roberto Ierusalimschy | 1996-09-20 | 1 | -1/+12 | |
| | ||||||
* | better structure to control stack interface lua-C. | Roberto Ierusalimschy | 1996-09-20 | 1 | -55/+53 | |
| | | | | beginblock-endblock keeps better control over stack | |||||
* | "strmap" replaced by "strupper" and "strlower" (that's what people will | Roberto Ierusalimschy | 1996-09-16 | 1 | -67/+100 | |
| | | | | | use, anyway). "gsub" aceppts a function to give the replacement string. | |||||
* | "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 | 2 | -10/+5 | |
| | ||||||
* | functions may have tags CMARK and MARK, too. | Roberto Ierusalimschy | 1996-09-02 | 1 | -4/+9 | |
| | ||||||
* | lhf's corrections. | Roberto Ierusalimschy | 1996-08-28 | 1 | -166/+166 | |
| | ||||||
* | skip first line of a lua file if it starts with a '#' (to allow shell | Roberto Ierusalimschy | 1996-08-15 | 1 | -2/+8 | |
| | | | | scripts). | |||||
* | "[^]]" must mean "not ]". | Roberto Ierusalimschy | 1996-08-09 | 1 | -8/+13 | |
| | ||||||
* | singlematch and item_end are used by "read", in iolib. | Roberto Ierusalimschy | 1996-08-05 | 2 | -8/+11 | |
| | ||||||
* | Pattern-Matching! | Roberto Ierusalimschy | 1996-08-01 | 1 | -135/+359 | |
| | | | | plus several other changes... | |||||
* | more functions exported. | Roberto Ierusalimschy | 1996-08-01 | 1 | -2/+4 | |
| | ||||||
* | "pushnil" is not needed (default return is nil). | Roberto Ierusalimschy | 1996-08-01 | 1 | -23/+6 | |
| | ||||||
* | new mod implementation (more portable). | Roberto Ierusalimschy | 1996-08-01 | 1 | -4/+4 | |
| | ||||||
* | "memcpy" is defined in "string.h". | Roberto Ierusalimschy | 1996-07-24 | 1 | -1/+1 | |
| | ||||||
* | "exit" is defined in "stdlib". | Roberto Ierusalimschy | 1996-07-24 | 1 | -1/+2 | |
| | ||||||
* | very small corrections | Roberto Ierusalimschy | 1996-07-24 | 1 | -1/+3 | |
| | ||||||
* | C functions don't need to "pushnil" to return nil value (this is | Roberto Ierusalimschy | 1996-07-12 | 3 | -21/+4 | |
| | | | | the default value). | |||||
* | new name for POSIX flag (this one turns on some posix stuff in standard | Roberto Ierusalimschy | 1996-07-06 | 1 | -2/+2 | |
| | | | | header files). | |||||
* | flag for direct execution is "-e"; argument with an "=" goes to | Roberto Ierusalimschy | 1996-07-05 | 1 | -3/+2 | |
| | | | | direct execution, independently of flags. | |||||
* | when "block" is computed, "nentity" == "block". So the change is only | Roberto Ierusalimschy | 1996-06-18 | 1 | -2/+2 | |
| | | | | a simpler way to write the same expression. | |||||
* | "lua_dofile" has a more informative return code. | Roberto Ierusalimschy | 1996-06-18 | 1 | -3/+5 | |
| | ||||||
* | "lua_dofile" returns different error codes if it could not open the file | Roberto Ierusalimschy | 1996-06-10 | 1 | -6/+8 | |
| | ||||||
* | new option "-x" to execute a string given as argument. | Roberto Ierusalimschy | 1996-06-10 | 1 | -62/+32 | |
| | ||||||
* | lexical analiser may use luaI_buffer, instead of waste space with | Roberto Ierusalimschy | 1996-05-30 | 1 | -74/+69 | |
| | | | | a separate buffer. | |||||
* | first version of vararg facility (plus new function "call"). | Roberto Ierusalimschy | 1996-05-28 | 7 | -115/+217 | |
| | ||||||
* | small correction. | Roberto Ierusalimschy | 1996-05-27 | 1 | -2/+2 | |
| | ||||||
* | "luaI_malloc(s)" is just a macro to "luaI_realloc(NULL, s)". | Roberto Ierusalimschy | 1996-05-24 | 2 | -19/+10 | |
| | ||||||
* | variables which contain string lengths must be long (if they also may | Roberto Ierusalimschy | 1996-05-22 | 2 | -24/+26 | |
| | | | | be negative) or size_t. | |||||
* | memory manager for old versions of Lua. It should be in RCS since | Roberto Ierusalimschy | 1996-05-06 | 0 | -0/+0 | |
| | | | | the beginning. | |||||
* | unused "#include".v2.4 | Roberto Ierusalimschy | 1996-05-06 | 2 | -13/+10 | |
| | ||||||
* | update of dependencies from "#include"s. | Roberto Ierusalimschy | 1996-05-06 | 1 | -3/+3 | |
| | ||||||
* | new version. | Roberto Ierusalimschy | 1996-05-06 | 1 | -2/+2 | |
| | ||||||
* | tables may grow bigger than words. | Roberto Ierusalimschy | 1996-05-06 | 2 | -30/+31 | |
| | ||||||
* | as strings are no more duplicated, "nextvar" can use "pushstring". | Roberto Ierusalimschy | 1996-05-06 | 1 | -6/+2 | |
| | ||||||
* | small corrections. | Roberto Ierusalimschy | 1996-05-03 | 2 | -4/+11 | |
| | ||||||
* | "isatty" is POSIX, but not ANSI. | Roberto Ierusalimschy | 1996-05-03 | 1 | -2/+3 | |
| | ||||||
* | new function "luaI_openlib" to help open libs. | Roberto Ierusalimschy | 1996-04-30 | 4 | -55/+79 | |
| | ||||||
* | new algotithm to adjust garbage collection: it tries to adapt gc calls | Roberto Ierusalimschy | 1996-04-29 | 1 | -9/+7 | |
| | | | | so that it collects half of the total objects when it is called. | |||||
* | no more "lua_Reference"; new return value for "append"; | Roberto Ierusalimschy | 1996-04-29 | 1 | -22/+17 | |
| | | | | documentation of "exit" (it was not in the manual). | |||||
* | lua_Reference is int, so say so. | Roberto Ierusalimschy | 1996-04-25 | 5 | -20/+18 | |
| | ||||||
* | "malloc.h" is not ansi. | Roberto Ierusalimschy | 1996-04-25 | 1 | -2/+2 | |
| |