Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG: 'luaV_settable' may invalidate a reference to a table and try | Roberto Ierusalimschy | 2009-07-01 | 1 | -5/+46 |
| | | | | to reuse it. | ||||
* | bug: 'luaV_settable' may invalidate a reference to a table and try | Roberto Ierusalimschy | 2009-07-01 | 1 | -3/+6 |
| | | | | to reuse it. | ||||
* | Standard library for bitwise operations | Roberto Ierusalimschy | 2009-07-01 | 1 | -0/+123 |
| | |||||
* | new module 'lbitlib.c' for bitwise operations | Roberto Ierusalimschy | 2009-07-01 | 4 | -23/+38 |
| | |||||
* | use of LUAI_UINT32 replaced by 'unsigned LUA_INT32' (one less | Roberto Ierusalimschy | 2009-07-01 | 1 | -2/+2 |
| | | | | definition needed) | ||||
* | better error messages for luaL_checkversion | Roberto Ierusalimschy | 2009-06-19 | 1 | -4/+5 |
| | |||||
* | l_version may be local to 'lua_version' | Roberto Ierusalimschy | 2009-06-19 | 1 | -4/+3 |
| | |||||
* | 'checkversion' implemented in the auxiliary library | Roberto Ierusalimschy | 2009-06-18 | 3 | -5/+16 |
| | |||||
* | new function 'lua_version' (so that 'checkversion' can be implemented | Roberto Ierusalimschy | 2009-06-18 | 4 | -15/+12 |
| | | | | in the auxiliary library) | ||||
* | default paths have dot option as the last one (to improve security) | Roberto Ierusalimschy | 2009-06-18 | 1 | -9/+9 |
| | |||||
* | better treatment of integer formats in string.format | Roberto Ierusalimschy | 2009-06-18 | 1 | -7/+6 |
| | |||||
* | small optimization in 'lua_arith' (avoids overhead in the common case | Roberto Ierusalimschy | 2009-06-18 | 1 | -2/+6 |
| | | | | of both arguments being numbers) | ||||
* | new macro 'changenvalue' | Roberto Ierusalimschy | 2009-06-18 | 1 | -1/+4 |
| | |||||
* | small optimization (reorder of BinOpr enum to unify some cases | Roberto Ierusalimschy | 2009-06-18 | 3 | -22/+23 |
| | | | | in switches) | ||||
* | lua_objlen should not work for numbers (according to the manual) | Roberto Ierusalimschy | 2009-06-17 | 1 | -8/+1 |
| | |||||
* | 'lua_lessthan' replaced by more generic 'lua_compare' | Roberto Ierusalimschy | 2009-06-17 | 1 | -2/+2 |
| | |||||
* | new functions 'lua_arith' and 'lua_compare' | Roberto Ierusalimschy | 2009-06-17 | 3 | -24/+51 |
| | |||||
* | exports luaV_arith to be used by lua_arith | Roberto Ierusalimschy | 2009-06-17 | 1 | -1/+3 |
| | |||||
* | exports luaV_arith to be used by lua_arith + uses 'luaO_arith' to | Roberto Ierusalimschy | 2009-06-17 | 1 | -16/+7 |
| | | | | perform basic arith. operations | ||||
* | constant folding uses 'luaO_arith' to perform basic operations | Roberto Ierusalimschy | 2009-06-17 | 1 | -17/+5 |
| | |||||
* | new function 'luaO_arith' to perform basic arithmetic operations | Roberto Ierusalimschy | 2009-06-17 | 2 | -2/+17 |
| | |||||
* | 'lessequal' renamed 'luaV_lessequal' and exported to be used by | Roberto Ierusalimschy | 2009-06-17 | 2 | -4/+5 |
| | | | | 'lua_compare' | ||||
* | new API function 'lua_mainthread' | Roberto Ierusalimschy | 2009-06-15 | 3 | -3/+12 |
| | |||||
* | patch for wrong code generation for some particular boolean expressions | Roberto Ierusalimschy | 2009-06-15 | 1 | -2/+49 |
| | |||||
* | BUG: "(((1 or false) and true) or false)" gives wrong result | Roberto Ierusalimschy | 2009-06-15 | 1 | -9/+15 |
| | |||||
* | 'getline' renamed to 'getfuncline' (to avoid problems with POSIX) | Roberto Ierusalimschy | 2009-06-10 | 4 | -9/+9 |
| | |||||
* | new function 'luaK_codek' (detail) | Roberto Ierusalimschy | 2009-06-10 | 3 | -6/+15 |
| | |||||
* | new macro 'condmovestack' instead of 'condhardstacktests' | Roberto Ierusalimschy | 2009-06-08 | 4 | -13/+11 |
| | |||||
* | added "\n" at the end of 'package.config' (so that the string | Roberto Ierusalimschy | 2009-06-04 | 1 | -2/+2 |
| | | | | is a sequence of complete lines) | ||||
* | no more L->base + ci->base only for Lua functions (C functions may use | Roberto Ierusalimschy | 2009-06-01 | 7 | -80/+81 |
| | | | | 'func') | ||||
* | small bug in 'luaV_concat' (L->top was left incorrect in some cases) | Roberto Ierusalimschy | 2009-05-27 | 4 | -29/+28 |
| | |||||
* | type of 'luai_ctype_' array changed to unsigned (safer for bitwise | Roberto Ierusalimschy | 2009-05-27 | 2 | -4/+6 |
| | | | | operations) | ||||
* | details (use ci->base instead of L->base when possible) | Roberto Ierusalimschy | 2009-05-22 | 1 | -6/+6 |
| | |||||
* | errors in finalizers are propagated with code LUA_ERRGCMM (ERRor in | Roberto Ierusalimschy | 2009-05-21 | 3 | -9/+20 |
| | | | | __gc MetaMethod) | ||||
* | hexadecimal escape sequences in strings + better error messages for | Roberto Ierusalimschy | 2009-05-18 | 1 | -22/+55 |
| | | | | bad decimal escape sequences | ||||
* | new macro 'zungetc' | Roberto Ierusalimschy | 2009-05-18 | 1 | -1/+4 |
| | |||||
* | new property 'lisupper' (needed to compute values for hexa digits) | Roberto Ierusalimschy | 2009-05-18 | 2 | -7/+9 |
| | |||||
* | 'symbexec' merged with 'getobjname' (as only use for symbolic execution | Roberto Ierusalimschy | 2009-05-04 | 1 | -103/+78 |
| | | | | now is to find a "good" name for an object) | ||||
* | variable renaming: 'lualibs' -> 'loadedlibs'; 'luareqlibs' -> | Roberto Ierusalimschy | 2009-05-01 | 1 | -7/+7 |
| | | | | 'preloadedlibs' | ||||
* | comments | Roberto Ierusalimschy | 2009-05-01 | 1 | -3/+5 |
| | |||||
* | no more code checking | Roberto Ierusalimschy | 2009-04-30 | 5 | -131/+9 |
| | |||||
* | resize string hash table only when new size is smaller than current one | Roberto Ierusalimschy | 2009-04-29 | 1 | -3/+7 |
| | |||||
* | hash table for strings is rehashed in place | Roberto Ierusalimschy | 2009-04-29 | 1 | -16/+18 |
| | |||||
* | new way to GC stacks: the entire stack must be correct all the times; | Roberto Ierusalimschy | 2009-04-28 | 4 | -47/+63 |
| | | | | | the 'dead' part of a stack (after the top) must have only nil's, so that 'top' may go up without cleaning the stack. | ||||
* | malicious zero-length string in binary code may segfault Lua + | Roberto Ierusalimschy | 2009-04-27 | 1 | -2/+30 |
| | | | | wrong code generation for some particular boolean expressions | ||||
* | unused arguments removed | Roberto Ierusalimschy | 2009-04-27 | 1 | -9/+9 |
| | |||||
* | 'exit' changed to 'abort' in case of panic (+ some extra comments) | Roberto Ierusalimschy | 2009-04-26 | 1 | -9/+9 |
| | | | | 'abort' seems more in line with panic ("abnormal termination") | ||||
* | several small improvements based on 'ci' being fixed now (including | Roberto Ierusalimschy | 2009-04-17 | 8 | -138/+133 |
| | | | | erasing savedpc from lua_State) | ||||
* | 'luaM_freearray' does not need array type as argument | Roberto Ierusalimschy | 2009-04-17 | 5 | -18/+18 |
| | |||||
* | 'CallInfo' stack implemented as double-linked list instead of an array | Roberto Ierusalimschy | 2009-04-17 | 10 | -126/+127 |
| |