Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | 'nresults' is saved in CallInfo from the caller, not the called | Roberto Ierusalimschy | 2009-04-15 | 1 | -5/+4 |
| | |||||
* | new function 'T.makeCfunc' (for later use) | Roberto Ierusalimschy | 2009-04-14 | 1 | -16/+38 |
| | |||||
* | first implementation of yieldable 'pcall' | Roberto Ierusalimschy | 2009-04-08 | 5 | -30/+110 |
| | |||||
* | detail | Roberto Ierusalimschy | 2009-04-03 | 1 | -2/+2 |
| | |||||
* | added comment explaining why the 'feof' test when loading a file | Roberto Ierusalimschy | 2009-04-02 | 1 | -1/+4 |
| | |||||
* | Lua will abort anyway, so 'panic' does not need to. | Roberto Ierusalimschy | 2009-03-31 | 1 | -2/+2 |
| | |||||
* | in 'lua_call', avoid preparing a continuation when thread cannot yield. | Roberto Ierusalimschy | 2009-03-30 | 1 | -8/+8 |
| | |||||
* | avoid making 'lastfree' an invalid pointer | Roberto Ierusalimschy | 2009-03-30 | 1 | -2/+3 |
| | |||||
* | 'loadlib(lib, "*")' loads 'lib' with global names exported to all | Roberto Ierusalimschy | 2009-03-26 | 1 | -13/+20 |
| | |||||
* | small bug: EOZ is a valid character to be tested | Roberto Ierusalimschy | 2009-03-26 | 2 | -12/+21 |
| | |||||
* | no more support for old-style varargs | Roberto Ierusalimschy | 2009-03-26 | 5 | -51/+10 |
| | |||||
* | 'context' added to suspendable calls | Roberto Ierusalimschy | 2009-03-23 | 6 | -24/+39 |
| | |||||
* | 'math.random' uses lua_Number to manage its arguments (there is no | Roberto Ierusalimschy | 2009-03-17 | 1 | -8/+8 |
| | | | | reason to lose range). | ||||
* | missing argument to 'assert' raises "assertion failed" error | Roberto Ierusalimschy | 2009-03-16 | 1 | -2/+1 |
| | |||||
* | new optional argument to 'load', to control allowed modes (binary or | Roberto Ierusalimschy | 2009-03-13 | 1 | -15/+41 |
| | | | | textual chunks) | ||||
* | ctype 'lalpha' includes '_' (as '_' behaves as a letter from the | Roberto Ierusalimschy | 2009-03-11 | 3 | -9/+11 |
| | | | | point of view of Lua) | ||||
* | added macro 'lisxdigit' (just in case :) | Roberto Ierusalimschy | 2009-03-10 | 2 | -6/+8 |
| | |||||
* | yielding across lua_call (first version) | Roberto Ierusalimschy | 2009-03-10 | 13 | -110/+169 |
| | |||||
* | better notes about some opcodes (comments only) | Roberto Ierusalimschy | 2009-03-09 | 1 | -11/+16 |
| | |||||
* | initial separation, in CallInfo, of what is relevant only to Lua | Roberto Ierusalimschy | 2009-03-04 | 4 | -11/+15 |
| | | | | functions or only to C functions | ||||
* | new states have a reasonable panic function + | Roberto Ierusalimschy | 2009-03-03 | 1 | -4/+18 |
| | | | | | testC may run code on different threads + rename of some testC operations ('rawcall'->'call', 'call'->'pcall') | ||||
* | if thread has no error handling, try main thread handler before panicking | Roberto Ierusalimschy | 2009-03-03 | 1 | -7/+13 |
| | |||||
* | detail | Roberto Ierusalimschy | 2009-03-02 | 1 | -2/+2 |
| | |||||
* | error functions search global space for a name for a function when | Roberto Ierusalimschy | 2009-02-27 | 1 | -3/+55 |
| | | | | no other name is available | ||||
* | code section 'Traceback' moved to the beginning of the file | Roberto Ierusalimschy | 2009-02-27 | 1 | -52/+61 |
| | |||||
* | closing a "popen" file returns the process exit status | Roberto Ierusalimschy | 2009-02-20 | 2 | -7/+12 |
| | |||||
* | global array of ctypes renamed to 'luai_ctype_' (extern names must | Roberto Ierusalimschy | 2009-02-20 | 2 | -9/+9 |
| | | | | use a "lua" prefix...) | ||||
* | Lua now uses "homemade" lctype (instead of ctype.h from ANSI C) | Roberto Ierusalimschy | 2009-02-19 | 4 | -26/+28 |
| | |||||
* | "homemade" version of ctype.h | Roberto Ierusalimschy | 2009-02-19 | 2 | -0/+78 |
| | |||||
* | 'fputs' changed to 'luai_writestring' + use of 'lua_checkversion' | Roberto Ierusalimschy | 2009-02-19 | 1 | -2/+3 |
| | |||||
* | better error messages for 'lua_checkversion' | Roberto Ierusalimschy | 2009-02-19 | 1 | -3/+3 |
| | |||||
* | new macro 'lua_checkversion' to check whether core and application are | Roberto Ierusalimschy | 2009-02-18 | 5 | -5/+22 |
| | | | | compatible | ||||
* | using light userdata to represent "remote" states | Roberto Ierusalimschy | 2009-02-18 | 1 | -8/+14 |
| | |||||
* | panic mode does not reset stack (so that panic function can gather | Roberto Ierusalimschy | 2009-02-18 | 1 | -14/+1 |
| | | | | debug information from it) | ||||
* | 'log10' is deprecated now | Roberto Ierusalimschy | 2009-02-18 | 2 | -2/+21 |
| | |||||
* | better precision for log(x, 10) | Roberto Ierusalimschy | 2009-02-18 | 1 | -4/+10 |
| | |||||
* | finalizers always called protected | Roberto Ierusalimschy | 2009-02-17 | 2 | -16/+10 |
| | |||||
* | buffer creation ensures buffer space plus MINSTACK in the stack | Roberto Ierusalimschy | 2009-02-17 | 1 | -1/+2 |
| | |||||
* | 'db_errorfb' changed to 'db_traceback' for consistency | Roberto Ierusalimschy | 2009-02-17 | 1 | -3/+3 |
| | |||||
* | no more '__len' metamethod for strings | Roberto Ierusalimschy | 2009-02-16 | 1 | -3/+1 |
| | |||||
* | 'luaL_typeerror' spelled right | Roberto Ierusalimschy | 2009-02-13 | 2 | -6/+10 |
| | |||||
* | comment (should not use 'go trhough' when simply using multiple labels) | Roberto Ierusalimschy | 2009-02-11 | 1 | -2/+2 |
| | |||||
* | 'writestring' changed into a configurable macro | Roberto Ierusalimschy | 2009-02-07 | 2 | -18/+12 |
| | |||||
* | avoid using 'fputs' in 'print' to avoid problems with embedded zeros | Roberto Ierusalimschy | 2009-02-06 | 1 | -6/+12 |
| |