Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | getlocal cannot return the local itself, since lua_isstring and | Roberto Ierusalimschy | 1999-02-03 | 2 | -4/+9 | |
| | | | | lua_isnumber can modify it. | |||||
* | only parser uses MAX_WORD | Roberto Ierusalimschy | 1999-02-03 | 1 | -8/+1 | |
| | ||||||
* | new syntax: assignment expressions + better order for opcodes | Roberto Ierusalimschy | 1999-02-02 | 3 | -67/+111 | |
| | ||||||
* | opcodes with builtin parameters are too complicated for very little extra | Roberto Ierusalimschy | 1999-02-02 | 3 | -309/+96 | |
| | | | | performance. | |||||
* | "if" expression leaves only one of its expressions on the stack | Roberto Ierusalimschy | 1999-02-02 | 1 | -2/+5 | |
| | ||||||
* | "if" expressions. | Roberto Ierusalimschy | 1999-02-01 | 1 | -24/+31 | |
| | ||||||
* | negative numerals do not need a MINUSOPeration; go directly to contant | Roberto Ierusalimschy | 1999-01-29 | 1 | -44/+51 | |
| | | | | table. | |||||
* | no need to define functions for macros... | Roberto Ierusalimschy | 1999-01-26 | 3 | -36/+5 | |
| | ||||||
* | details | Roberto Ierusalimschy | 1999-01-26 | 1 | -2/+2 | |
| | ||||||
* | luaH_set does the set and protect its value; luaH_move can then be a | Roberto Ierusalimschy | 1999-01-25 | 1 | -31/+16 | |
| | | | | | macro. New algorithm for double hashing (does not use "%"). | |||||
* | luaH_set does the set, and protects its value, so luaH_move can be a | Roberto Ierusalimschy | 1999-01-25 | 1 | -4/+4 | |
| | | | | macro. | |||||
* | luaH_set does the set! | Roberto Ierusalimschy | 1999-01-25 | 1 | -13/+8 | |
| | ||||||
* | uses the same double hashing that is used for tables | Roberto Ierusalimschy | 1999-01-25 | 1 | -12/+17 | |
| | ||||||
* | table entries with ref=null always have val=null too. | Roberto Ierusalimschy | 1999-01-25 | 3 | -32/+21 | |
| | ||||||
* | small optimizations(?) | Roberto Ierusalimschy | 1999-01-22 | 1 | -49/+36 | |
| | ||||||
* | C cannot initialize a struct. | Roberto Ierusalimschy | 1999-01-22 | 1 | -10/+10 | |
| | ||||||
* | "free" usually handles NULL; handle non ANSI case separately. | Roberto Ierusalimschy | 1999-01-22 | 1 | -1/+2 | |
| | ||||||
* | local names are all in the constant pool, so they do not need to be | Roberto Ierusalimschy | 1999-01-22 | 1 | -9/+2 | |
| | | | | marked in GC. | |||||
* | "realloc" usually implements "malloc"; handle non ANSI case separately. | Roberto Ierusalimschy | 1999-01-22 | 1 | -23/+21 | |
| | ||||||
* | <string.h> is needed because of "memcpy". | Roberto Ierusalimschy | 1999-01-21 | 1 | -1/+2 | |
| | ||||||
* | small optimizations | Roberto Ierusalimschy | 1999-01-20 | 1 | -9/+8 | |
| | ||||||
* | small optimization in getglobal | Roberto Ierusalimschy | 1999-01-15 | 1 | -18/+20 | |
| | ||||||
* | names... | Roberto Ierusalimschy | 1999-01-15 | 2 | -38/+24 | |
| | ||||||
* | new functions to manipulate C global variables | Roberto Ierusalimschy | 1999-01-15 | 3 | -11/+51 | |
| | ||||||
* | GC can be called during parsing, if needed. | Roberto Ierusalimschy | 1999-01-15 | 2 | -31/+44 | |
| | ||||||
* | "getstack" returns func, too. | Roberto Ierusalimschy | 1999-01-15 | 1 | -1/+5 | |
| | ||||||
* | "%.16g" already formats integers as integers, so we do not need an | Roberto Ierusalimschy | 1999-01-13 | 1 | -12/+5 | |
| | | | | alternative "%ld" convertion in "tostring". | |||||
* | details (comments) | Roberto Ierusalimschy | 1999-01-13 | 2 | -8/+6 | |
| | ||||||
* | better precision when converting numbers to strings. | Roberto Ierusalimschy | 1999-01-12 | 1 | -2/+2 | |
| | ||||||
* | details | Roberto Ierusalimschy | 1999-01-11 | 1 | -4/+8 | |
| | ||||||
* | header missing. | Roberto Ierusalimschy | 1999-01-11 | 1 | -1/+2 | |
| | ||||||
* | initialization module (to load libraries) | Roberto Ierusalimschy | 1999-01-08 | 1 | -0/+17 | |
| | ||||||
* | new library for debbuging | Roberto Ierusalimschy | 1999-01-08 | 4 | -11/+228 | |
| | ||||||
* | when handling signals (^C), deep old hook values. | Roberto Ierusalimschy | 1999-01-06 | 1 | -3/+9 | |
| | ||||||
* | "goto" for tail recursion changed to "while" | Roberto Ierusalimschy | 1999-01-04 | 1 | -14/+13 | |
| | ||||||
* | double hashing for string tables. | Roberto Ierusalimschy | 1999-01-04 | 1 | -57/+40 | |
| | ||||||
* | small improvements. | Roberto Ierusalimschy | 1999-01-04 | 2 | -6/+6 | |
| | ||||||
* | new sort algorithm. | Roberto Ierusalimschy | 1999-01-04 | 1 | -54/+66 | |
| | ||||||
* | function "move" for tables is better implemented with some "inside | Roberto Ierusalimschy | 1999-01-04 | 2 | -2/+13 | |
| | | | | information". | |||||
* | bug: "format" does not check size of format item (such as "%00000...00000d"). | Roberto Ierusalimschy | 1999-01-04 | 2 | -39/+36 | |
| | ||||||
* | comments | Roberto Ierusalimschy | 1999-01-04 | 2 | -17/+42 | |
| | ||||||
* | donĀ“t need the "+1", the "%" is enough to garantee r<1. | Roberto Ierusalimschy | 1998-12-30 | 1 | -4/+4 | |
| | ||||||
* | details ("settable") | Roberto Ierusalimschy | 1998-12-30 | 3 | -43/+50 | |
| | ||||||
* | new option for function "random": random(a,b) returns a<=x<=b | Roberto Ierusalimschy | 1998-12-30 | 1 | -9/+15 | |
| | ||||||
* | new functions "tinsert" and "tremove" | Roberto Ierusalimschy | 1998-12-30 | 3 | -13/+49 | |
| | ||||||
* | tables are better manipulated via "Hash *" instead of "TObject" or | Roberto Ierusalimschy | 1998-12-30 | 3 | -39/+43 | |
| | | | | "lua_Object". | |||||
* | to avoid warnings about "typecast" (Visual C++) | Roberto Ierusalimschy | 1998-12-28 | 10 | -75/+75 | |
| | ||||||
* | new function "luaO_str2d" to convert strings to numbers, because | Roberto Ierusalimschy | 1998-12-27 | 4 | -76/+108 | |
| | | | | | old "lex" algorithm had aproximation errors, but strtod (and atof and scanf) are too slow. | |||||
* | format for double is always "%g", do not need #defines | Roberto Ierusalimschy | 1998-12-27 | 1 | -4/+3 | |
| | ||||||
* | reorder and rename of most functions, for better documentation. | Roberto Ierusalimschy | 1998-12-27 | 1 | -261/+312 | |
| |