summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* better format for error messages.Roberto Ierusalimschy1996-11-081-3/+4
|
* error message for syntax "1..2";Roberto Ierusalimschy1996-11-081-7/+18
| | | | syntax error function is in "lex.c" (it has the token)
* syntax error function is in "lex.c" (it has the token)Roberto Ierusalimschy1996-11-082-10/+4
|
* SunOS is not ANSI about the return value of "sprintf".Roberto Ierusalimschy1996-11-071-7/+6
|
* corrected copyright noticeRoberto Ierusalimschy1996-11-071-2/+2
|
* replaced unions by memcpyLuiz Henrique de Figueiredo1996-11-071-7/+4
|
* replaced unions by memcpyLuiz Henrique de Figueiredo1996-11-071-12/+9
|
* new flag for STRERROR; libs now are called lib...v2_5_Betav2.5-betaRoberto Ierusalimschy1996-11-061-18/+24
|
* anna's commentsRoberto Ierusalimschy1996-11-061-23/+33
|
* pragmas should not be recognized inside literal strings.Roberto Ierusalimschy1996-11-061-6/+6
|
* i/o functions return an error messageRoberto Ierusalimschy1996-11-011-4/+14
|
* although an ANSI function, some systems do not offer "strerror"Roberto Ierusalimschy1996-11-011-0/+4
|
* new parameters for "read" and "write". BIG CHANGE.Roberto Ierusalimschy1996-11-011-438/+124
|
* new pattern matching facilities; new version of i/o lib;Roberto Ierusalimschy1996-11-011-189/+363
| | | | other small corrections.
* pre-defined variable _VERSION_Roberto Ierusalimschy1996-11-011-2/+5
|
* new version numberRoberto Ierusalimschy1996-11-011-2/+2
|
* small omission corrected ("s_tsvalue")Roberto Ierusalimschy1996-11-011-1/+2
|
* small corrections in error messagesRoberto Ierusalimschy1996-10-311-5/+5
|
* "strfind" has an extra parameter to turn off all special characteres.Roberto Ierusalimschy1996-10-311-2/+3
|
* some compilers do not accept "stdin"/"stdout" as constants.Roberto Ierusalimschy1996-10-161-2/+3
|
* documentation of opcode meanings (thanks to lhf)Roberto Ierusalimschy1996-09-261-53/+76
|
* new way to handle pragmas (at the lexical level, instead of parsing).Roberto Ierusalimschy1996-09-252-35/+35
|
* lua_linenumber is initialized in lex.cRoberto Ierusalimschy1996-09-251-3/+1
|
* "call" returns separate results, instead of a table.Roberto Ierusalimschy1996-09-243-33/+17
|
* "dofile" and "dostring" may return values.Roberto Ierusalimschy1996-09-243-15/+27
|
* a chunk may end with a return.Roberto Ierusalimschy1996-09-241-6/+7
|
* new function "strrep"Roberto Ierusalimschy1996-09-201-1/+12
|
* better structure to control stack interface lua-C.Roberto Ierusalimschy1996-09-201-55/+53
| | | | beginblock-endblock keeps better control over stack
* "strmap" replaced by "strupper" and "strlower" (that's what people willRoberto Ierusalimschy1996-09-161-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 Ierusalimschy1996-09-111-5/+11
|
* BUG: a program ending in a comment without EOL made lex loops forever.Roberto Ierusalimschy1996-09-092-10/+5
|
* functions may have tags CMARK and MARK, too.Roberto Ierusalimschy1996-09-021-4/+9
|
* lhf's corrections.Roberto Ierusalimschy1996-08-281-166/+166
|
* skip first line of a lua file if it starts with a '#' (to allow shellRoberto Ierusalimschy1996-08-151-2/+8
| | | | scripts).
* "[^]]" must mean "not ]".Roberto Ierusalimschy1996-08-091-8/+13
|
* singlematch and item_end are used by "read", in iolib.Roberto Ierusalimschy1996-08-052-8/+11
|
* Pattern-Matching!Roberto Ierusalimschy1996-08-011-135/+359
| | | | plus several other changes...
* more functions exported.Roberto Ierusalimschy1996-08-011-2/+4
|
* "pushnil" is not needed (default return is nil).Roberto Ierusalimschy1996-08-011-23/+6
|
* new mod implementation (more portable).Roberto Ierusalimschy1996-08-011-4/+4
|
* "memcpy" is defined in "string.h".Roberto Ierusalimschy1996-07-241-1/+1
|
* "exit" is defined in "stdlib".Roberto Ierusalimschy1996-07-241-1/+2
|
* very small correctionsRoberto Ierusalimschy1996-07-241-1/+3
|
* C functions don't need to "pushnil" to return nil value (this isRoberto Ierusalimschy1996-07-123-21/+4
| | | | the default value).
* new name for POSIX flag (this one turns on some posix stuff in standardRoberto Ierusalimschy1996-07-061-2/+2
| | | | header files).
* flag for direct execution is "-e"; argument with an "=" goes toRoberto Ierusalimschy1996-07-051-3/+2
| | | | direct execution, independently of flags.
* when "block" is computed, "nentity" == "block". So the change is onlyRoberto Ierusalimschy1996-06-181-2/+2
| | | | a simpler way to write the same expression.
* "lua_dofile" has a more informative return code.Roberto Ierusalimschy1996-06-181-3/+5
|
* "lua_dofile" returns different error codes if it could not open the fileRoberto Ierusalimschy1996-06-101-6/+8
|
* new option "-x" to execute a string given as argument.Roberto Ierusalimschy1996-06-101-62/+32
|