| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | new optional argument to 'load', to control allowed modes (binary or | Roberto Ierusalimschy | 2009-03-13 | 1 | -15/+41 |
* | ctype 'lalpha' includes '_' (as '_' behaves as a letter from the | Roberto Ierusalimschy | 2009-03-11 | 3 | -9/+11 |
* | 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 |
* | new states have a reasonable panic function + | Roberto Ierusalimschy | 2009-03-03 | 1 | -4/+18 |
* | 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 |
* | 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 |
* | 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 |
* | 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 |
* | '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 |
* | check for invalid use of '%' in replacement string in 'string.gsub' | Roberto Ierusalimschy | 2009-02-03 | 1 | -2/+6 |
* | detail (MAXSRC changed to LUA_IDSIZE) | Roberto Ierusalimschy | 2008-12-26 | 1 | -6/+3 |
* | concat TM can yield | Roberto Ierusalimschy | 2008-11-06 | 2 | -12/+24 |
* | generic for coded as two dedicated instructions to simplify resumption | Roberto Ierusalimschy | 2008-10-30 | 6 | -39/+43 |
* | yields accross metamethods and for iterators (except for __concat) | Roberto Ierusalimschy | 2008-10-28 | 2 | -40/+84 |
* | whole build depends on 'makefile' itself + better format for warning | Roberto Ierusalimschy | 2008-10-28 | 1 | -36/+47 |
* | some cleaning | Roberto Ierusalimschy | 2008-10-28 | 2 | -10/+18 |
* | detail (added 'UNUSED' to unused argument) | Roberto Ierusalimschy | 2008-10-28 | 1 | -1/+2 |
* | updating header dependencies | Roberto Ierusalimschy | 2008-10-03 | 1 | -26/+26 |
* | more specific test to avoid calling luaF_close when function returns | Roberto Ierusalimschy | 2008-09-09 | 1 | -3/+3 |
* | better control of call status through CallInfo | Roberto Ierusalimschy | 2008-08-26 | 7 | -30/+41 |
* | first steps towards yielding through longjump | Roberto Ierusalimschy | 2008-08-13 | 3 | -62/+50 |
* | small bug: lua_resume returning LUA_YIELD is not an error | Roberto Ierusalimschy | 2008-08-13 | 1 | -2/+2 |
* | new field 'status' in CallInfo structure | Roberto Ierusalimschy | 2008-08-13 | 2 | -3/+5 |
* | added missing parentheses around function names | Roberto Ierusalimschy | 2008-08-13 | 1 | -12/+12 |
* | change in error message | Roberto Ierusalimschy | 2008-08-06 | 1 | -3/+2 |
* | 'module' may change the environment of a C function + | Roberto Ierusalimschy | 2008-08-06 | 1 | -2/+51 |
* | bug: string at the end of TString must consider the entire TString | Roberto Ierusalimschy | 2008-08-05 | 1 | -2/+2 |
* | bug: 'module' now checks that is caller is a Lua function | Roberto Ierusalimschy | 2008-08-05 | 1 | -5/+8 |
* | larger alignment requirement helps to uncover some kinds of bugs | Roberto Ierusalimschy | 2008-08-05 | 1 | -1/+6 |