Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | little bug: `1ea' got a wrong token at the error message | Roberto Ierusalimschy | 1999-12-22 | 1 | -2/+3 | |
| | ||||||
* | many details + code redistribution | Roberto Ierusalimschy | 1999-12-14 | 1 | -4/+4 | |
| | ||||||
* | missing include | Roberto Ierusalimschy | 1999-12-02 | 1 | -1/+2 | |
| | ||||||
* | first implementation of multiple states (reentrant code). | Roberto Ierusalimschy | 1999-11-22 | 1 | -74/+77 | |
| | ||||||
* | new warnings with option "-W" (gcc) | Roberto Ierusalimschy | 1999-11-09 | 1 | -2/+2 | |
| | ||||||
* | warnings from Visual C++ | Roberto Ierusalimschy | 1999-10-19 | 1 | -2/+2 | |
| | ||||||
* | new implementation for string hashing, with chaining. | Roberto Ierusalimschy | 1999-10-11 | 1 | -4/+4 | |
| | ||||||
* | simplified version of `gc' tag method (only for userdata now). | Roberto Ierusalimschy | 1999-10-04 | 1 | -4/+4 | |
| | ||||||
* | new interface for `luaO_strtod', which now checks signal, too. | Roberto Ierusalimschy | 1999-09-06 | 1 | -3/+2 | |
| | ||||||
* | "const" !!! | Roberto Ierusalimschy | 1999-08-16 | 1 | -8/+8 | |
| | ||||||
* | details | Roberto Ierusalimschy | 1999-07-22 | 1 | -3/+4 | |
| | ||||||
* | better treatment for arbitrary limits | Roberto Ierusalimschy | 1999-06-17 | 1 | -2/+4 | |
| | ||||||
* | bigger limits | Roberto Ierusalimschy | 1999-05-14 | 1 | -15/+10 | |
| | ||||||
* | details | Roberto Ierusalimschy | 1999-03-25 | 1 | -2/+2 | |
| | ||||||
* | details | Roberto Ierusalimschy | 1999-03-11 | 1 | -2/+2 | |
| | ||||||
* | details about debug info. | Roberto Ierusalimschy | 1999-03-05 | 1 | -3/+2 | |
| | ||||||
* | storing chunk "sources" instead of "filenames". | Roberto Ierusalimschy | 1999-03-04 | 1 | -5/+9 | |
| | ||||||
* | details (from lhf) | Roberto Ierusalimschy | 1999-02-25 | 1 | -2/+2 | |
| | ||||||
* | "L->Mbuffbase" is better kept as offset instead of pointer | Roberto Ierusalimschy | 1999-02-25 | 1 | -7/+7 | |
| | ||||||
* | "lua_debug", "lua_callhook" and "lua_linehook" must be inside "lua_state". | Roberto Ierusalimschy | 1999-02-04 | 1 | -6/+3 | |
| | ||||||
* | to avoid warnings about "typecast" (Visual C++) | Roberto Ierusalimschy | 1998-12-28 | 1 | -4/+4 | |
| | ||||||
* | new function "luaO_str2d" to convert strings to numbers, because | Roberto Ierusalimschy | 1998-12-27 | 1 | -45/+22 | |
| | | | | | old "lex" algorithm had aproximation errors, but strtod (and atof and scanf) are too slow. | |||||
* | small warnings | Roberto Ierusalimschy | 1998-12-03 | 1 | -3/+3 | |
| | ||||||
* | details ("luaX_token2str" doesn't need LexState) | Roberto Ierusalimschy | 1998-07-24 | 1 | -2/+2 | |
| | ||||||
* | double constant used in integer expression | Roberto Ierusalimschy | 1998-07-06 | 1 | -2/+2 | |
| | ||||||
* | "dostring" accepts chunk name. | Roberto Ierusalimschy | 1998-06-19 | 1 | -2/+2 | |
| | ||||||
* | "findname" moved from lobject.c to lauxlib.c (so libraries may use it). | Roberto Ierusalimschy | 1998-06-18 | 1 | -3/+3 | |
| | ||||||
* | no more error for '\x' (with "invalid" x) | Roberto Ierusalimschy | 1998-06-06 | 1 | -9/+3 | |
| | ||||||
* | NEW LL(1) PARSER | Roberto Ierusalimschy | 1998-05-27 | 1 | -64/+74 | |
| | ||||||
* | details (and new escape sequences: \a, \b, ...) | Roberto Ierusalimschy | 1998-03-20 | 1 | -5/+10 | |
| | ||||||
* | correct way to handle string delimiters | Roberto Ierusalimschy | 1998-03-09 | 1 | -7/+5 | |
| | ||||||
* | support for strings with '\0' | Roberto Ierusalimschy | 1998-03-06 | 1 | -3/+3 | |
| | ||||||
* | implementation of numerical escape sequences in strings ("\12"); | Roberto Ierusalimschy | 1998-02-11 | 1 | -20/+41 | |
| | | | | better error messages for wrong tokens | |||||
* | BUG: wrong line number (+1) in error report when file starts with "#..." | Roberto Ierusalimschy | 1998-01-19 | 1 | -4/+2 | |
| | ||||||
* | small optimizations in switch order | Roberto Ierusalimschy | 1998-01-09 | 1 | -5/+6 | |
| | ||||||
* | small bugs in error report | Roberto Ierusalimschy | 1997-12-22 | 1 | -2/+4 | |
| | ||||||
* | new scheme for buffers, centralized in auxlib. | Roberto Ierusalimschy | 1997-12-17 | 1 | -35/+29 | |
| | ||||||
* | details (mainly error messages) | Roberto Ierusalimschy | 1997-12-09 | 1 | -4/+4 | |
| | ||||||
* | BUG: "lastline" was not reset on function entry, so debug information | Roberto Ierusalimschy | 1997-12-02 | 1 | -2/+1 | |
| | | | | started only in the 2nd line of a function. | |||||
* | small modifications (format, small optimizations, etc) | Roberto Ierusalimschy | 1997-11-21 | 1 | -159/+159 | |
| | ||||||
* | allows '\r' at the end of pragmas, so one can mix Windows and Unix files | Roberto Ierusalimschy | 1997-11-19 | 1 | -2/+3 | |
| | ||||||
* | first implementation of centralized global state. | Roberto Ierusalimschy | 1997-11-19 | 1 | -194/+178 | |
| | ||||||
* | small details | Roberto Ierusalimschy | 1997-11-07 | 1 | -2/+2 | |
| | ||||||
* | "lua_open": now lua has an explicit open operation. | Roberto Ierusalimschy | 1997-11-04 | 1 | -11/+6 | |
| | ||||||
* | using bison instead of yacc; lparser.c renamed to lstx.c (to | Roberto Ierusalimschy | 1997-10-13 | 1 | -2/+2 | |
| | | | | avoid confusion with lparser.h...) | |||||
* | new implementation for globals: Global value is stored in TaggedString | Roberto Ierusalimschy | 1997-09-26 | 1 | -6/+5 | |
| | ||||||
* | Lexical Analizer | Roberto Ierusalimschy | 1997-09-16 | 1 | -0/+462 | |