Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
1996-11-06 | anna's comments | Roberto Ierusalimschy | 1 | -23/+33 | |
1996-11-06 | pragmas should not be recognized inside literal strings. | Roberto Ierusalimschy | 1 | -6/+6 | |
1996-11-01 | i/o functions return an error message | Roberto Ierusalimschy | 1 | -4/+14 | |
1996-11-01 | although an ANSI function, some systems do not offer "strerror" | Roberto Ierusalimschy | 1 | -0/+4 | |
1996-11-01 | new parameters for "read" and "write". BIG CHANGE. | Roberto Ierusalimschy | 1 | -438/+124 | |
1996-11-01 | new pattern matching facilities; new version of i/o lib; | Roberto Ierusalimschy | 1 | -189/+363 | |
other small corrections. | |||||
1996-11-01 | pre-defined variable _VERSION_ | Roberto Ierusalimschy | 1 | -2/+5 | |
1996-11-01 | new version number | Roberto Ierusalimschy | 1 | -2/+2 | |
1996-11-01 | small omission corrected ("s_tsvalue") | Roberto Ierusalimschy | 1 | -1/+2 | |
1996-10-31 | small corrections in error messages | Roberto Ierusalimschy | 1 | -5/+5 | |
1996-10-31 | "strfind" has an extra parameter to turn off all special characteres. | Roberto Ierusalimschy | 1 | -2/+3 | |
1996-10-16 | some compilers do not accept "stdin"/"stdout" as constants. | Roberto Ierusalimschy | 1 | -2/+3 | |
1996-09-26 | documentation of opcode meanings (thanks to lhf) | Roberto Ierusalimschy | 1 | -53/+76 | |
1996-09-25 | new way to handle pragmas (at the lexical level, instead of parsing). | Roberto Ierusalimschy | 2 | -35/+35 | |
1996-09-25 | lua_linenumber is initialized in lex.c | Roberto Ierusalimschy | 1 | -3/+1 | |
1996-09-24 | "call" returns separate results, instead of a table. | Roberto Ierusalimschy | 3 | -33/+17 | |
1996-09-24 | "dofile" and "dostring" may return values. | Roberto Ierusalimschy | 3 | -15/+27 | |
1996-09-24 | a chunk may end with a return. | Roberto Ierusalimschy | 1 | -6/+7 | |
1996-09-20 | new function "strrep" | Roberto Ierusalimschy | 1 | -1/+12 | |
1996-09-20 | better structure to control stack interface lua-C. | Roberto Ierusalimschy | 1 | -55/+53 | |
beginblock-endblock keeps better control over stack | |||||
1996-09-16 | "strmap" replaced by "strupper" and "strlower" (that's what people will | Roberto Ierusalimschy | 1 | -67/+100 | |
use, anyway). "gsub" aceppts a function to give the replacement string. | |||||
1996-09-11 | "dostring" now stores the prefix of its string, to improve error messages. | Roberto Ierusalimschy | 1 | -5/+11 | |
1996-09-09 | BUG: a program ending in a comment without EOL made lex loops forever. | Roberto Ierusalimschy | 2 | -10/+5 | |
1996-09-02 | functions may have tags CMARK and MARK, too. | Roberto Ierusalimschy | 1 | -4/+9 | |
1996-08-28 | lhf's corrections. | Roberto Ierusalimschy | 1 | -166/+166 | |
1996-08-15 | skip first line of a lua file if it starts with a '#' (to allow shell | Roberto Ierusalimschy | 1 | -2/+8 | |
scripts). | |||||
1996-08-09 | "[^]]" must mean "not ]". | Roberto Ierusalimschy | 1 | -8/+13 | |
1996-08-05 | singlematch and item_end are used by "read", in iolib. | Roberto Ierusalimschy | 2 | -8/+11 | |
1996-08-01 | Pattern-Matching! | Roberto Ierusalimschy | 1 | -135/+359 | |
plus several other changes... | |||||
1996-08-01 | more functions exported. | Roberto Ierusalimschy | 1 | -2/+4 | |
1996-08-01 | "pushnil" is not needed (default return is nil). | Roberto Ierusalimschy | 1 | -23/+6 | |
1996-08-01 | new mod implementation (more portable). | Roberto Ierusalimschy | 1 | -4/+4 | |
1996-07-24 | "memcpy" is defined in "string.h". | Roberto Ierusalimschy | 1 | -1/+1 | |
1996-07-24 | "exit" is defined in "stdlib". | Roberto Ierusalimschy | 1 | -1/+2 | |
1996-07-24 | very small corrections | Roberto Ierusalimschy | 1 | -1/+3 | |
1996-07-12 | C functions don't need to "pushnil" to return nil value (this is | Roberto Ierusalimschy | 3 | -21/+4 | |
the default value). | |||||
1996-07-06 | new name for POSIX flag (this one turns on some posix stuff in standard | Roberto Ierusalimschy | 1 | -2/+2 | |
header files). | |||||
1996-07-05 | flag for direct execution is "-e"; argument with an "=" goes to | Roberto Ierusalimschy | 1 | -3/+2 | |
direct execution, independently of flags. | |||||
1996-06-18 | when "block" is computed, "nentity" == "block". So the change is only | Roberto Ierusalimschy | 1 | -2/+2 | |
a simpler way to write the same expression. | |||||
1996-06-18 | "lua_dofile" has a more informative return code. | Roberto Ierusalimschy | 1 | -3/+5 | |
1996-06-10 | "lua_dofile" returns different error codes if it could not open the file | Roberto Ierusalimschy | 1 | -6/+8 | |
1996-06-10 | new option "-x" to execute a string given as argument. | Roberto Ierusalimschy | 1 | -62/+32 | |
1996-05-30 | lexical analiser may use luaI_buffer, instead of waste space with | Roberto Ierusalimschy | 1 | -74/+69 | |
a separate buffer. | |||||
1996-05-28 | first version of vararg facility (plus new function "call"). | Roberto Ierusalimschy | 7 | -115/+217 | |
1996-05-27 | small correction. | Roberto Ierusalimschy | 1 | -2/+2 | |
1996-05-24 | "luaI_malloc(s)" is just a macro to "luaI_realloc(NULL, s)". | Roberto Ierusalimschy | 2 | -19/+10 | |
1996-05-22 | variables which contain string lengths must be long (if they also may | Roberto Ierusalimschy | 2 | -24/+26 | |
be negative) or size_t. | |||||
1996-05-06 | unused "#include".v2.4 | Roberto Ierusalimschy | 2 | -13/+10 | |
1996-05-06 | update of dependencies from "#include"s. | Roberto Ierusalimschy | 1 | -3/+3 | |
1996-05-06 | new version. | Roberto Ierusalimschy | 1 | -2/+2 | |