bugs
|
smart use of varargs may create functions that return too
|
2009-07-02 16:57:34 -03:00 |
lapi.c
|
l_version may be local to 'lua_version'
|
2009-06-19 11:21:23 -03:00 |
lapi.h
|
detail
|
2009-04-03 12:58:03 -03:00 |
lauxlib.c
|
better error messages for luaL_checkversion
|
2009-06-19 11:21:57 -03:00 |
lauxlib.h
|
'checkversion' implemented in the auxiliary library
|
2009-06-18 15:59:58 -03:00 |
lbaselib.c
|
first implementation of yieldable 'pcall'
|
2009-04-08 15:04:33 -03:00 |
lbitlib.c
|
Standard library for bitwise operations
|
2009-07-01 13:17:08 -03:00 |
lcode.c
|
small optimization (reorder of BinOpr enum to unify some cases
|
2009-06-18 13:35:05 -03:00 |
lcode.h
|
small optimization (reorder of BinOpr enum to unify some cases
|
2009-06-18 13:35:05 -03:00 |
lctype.c
|
type of 'luai_ctype_' array changed to unsigned (safer for bitwise
|
2009-05-27 13:51:15 -03:00 |
lctype.h
|
type of 'luai_ctype_' array changed to unsigned (safer for bitwise
|
2009-05-27 13:51:15 -03:00 |
ldblib.c
|
'db_errorfb' changed to 'db_traceback' for consistency
|
2009-02-17 10:21:28 -03:00 |
ldebug.c
|
'getline' renamed to 'getfuncline' (to avoid problems with POSIX)
|
2009-06-10 13:57:53 -03:00 |
ldebug.h
|
'getline' renamed to 'getfuncline' (to avoid problems with POSIX)
|
2009-06-10 13:57:53 -03:00 |
ldo.c
|
no more L->base + ci->base only for Lua functions (C functions may use
|
2009-06-01 16:09:26 -03:00 |
ldo.h
|
new macro 'condmovestack' instead of 'condhardstacktests'
|
2009-06-08 16:35:59 -03:00 |
ldump.c
|
useless test removed (pointed by lint)
|
2008-07-03 11:25:05 -03:00 |
lfunc.c
|
'luaM_freearray' does not need array type as argument
|
2009-04-17 11:40:13 -03:00 |
lfunc.h
|
added LUAI_FUNC to functions not in the API
|
2005-04-25 16:24:10 -03:00 |
lgc.c
|
new macro 'condmovestack' instead of 'condhardstacktests'
|
2009-06-08 16:35:59 -03:00 |
lgc.h
|
new macro 'condmovestack' instead of 'condhardstacktests'
|
2009-06-08 16:35:59 -03:00 |
linit.c
|
new module 'lbitlib.c' for bitwise operations
|
2009-07-01 13:16:40 -03:00 |
liolib.c
|
closing a "popen" file returns the process exit status
|
2009-02-20 10:50:27 -03:00 |
llex.c
|
hexadecimal escape sequences in strings + better error messages for
|
2009-05-18 14:28:04 -03:00 |
llex.h
|
parser should not call 'luaX_lexerror'
|
2007-10-25 14:45:47 -02:00 |
llimits.h
|
use of LUAI_UINT32 replaced by 'unsigned LUA_INT32' (one less
|
2009-07-01 13:14:15 -03:00 |
lmathlib.c
|
'math.random' uses lua_Number to manage its arguments (there is no
|
2009-03-17 14:55:39 -03:00 |
lmem.c
|
details
|
2006-09-14 15:42:28 -03:00 |
lmem.h
|
'luaM_freearray' does not need array type as argument
|
2009-04-17 11:40:13 -03:00 |
loadlib.c
|
added "\n" at the end of 'package.config' (so that the string
|
2009-06-04 16:34:24 -03:00 |
lobject.c
|
new function 'luaO_arith' to perform basic arithmetic operations
|
2009-06-17 14:48:34 -03:00 |
lobject.h
|
new macro 'changenvalue'
|
2009-06-18 13:36:40 -03:00 |
lopcodes.c
|
generic for coded as two dedicated instructions to simplify resumption
|
2008-10-30 13:39:30 -02:00 |
lopcodes.h
|
better notes about some opcodes (comments only)
|
2009-03-09 12:27:56 -03:00 |
loslib.c
|
by default, 'os.exit' closes current state
|
2008-06-13 13:59:00 -03:00 |
lparser.c
|
small optimization (reorder of BinOpr enum to unify some cases
|
2009-06-18 13:35:05 -03:00 |
lparser.h
|
added structure for local-variable information to allow extra
|
2008-05-08 12:44:51 -03:00 |
lstate.c
|
new function 'lua_version' (so that 'checkversion' can be implemented
|
2009-06-18 15:59:18 -03:00 |
lstate.h
|
new function 'lua_version' (so that 'checkversion' can be implemented
|
2009-06-18 15:59:18 -03:00 |
lstring.c
|
hash table for strings is rehashed in place
|
2009-04-29 14:09:41 -03:00 |
lstring.h
|
added LUAI_FUNC to functions not in the API
|
2005-04-25 16:24:10 -03:00 |
lstrlib.c
|
better treatment of integer formats in string.format
|
2009-06-18 13:51:03 -03:00 |
ltable.c
|
'luaM_freearray' does not need array type as argument
|
2009-04-17 11:40:13 -03:00 |
ltable.h
|
emergency garbage collector (core forces a GC when allocation fails)
|
2006-07-11 12:53:29 -03:00 |
ltablib.c
|
'lua_lessthan' replaced by more generic 'lua_compare'
|
2009-06-17 14:53:50 -03:00 |
ltests.c
|
new functions 'lua_arith' and 'lua_compare'
|
2009-06-17 14:53:14 -03:00 |
ltests.h
|
several small improvements based on 'ci' being fixed now (including
|
2009-04-17 19:00:01 -03:00 |
ltm.c
|
tables and strings respect __len metamethod
|
2007-09-10 14:59:32 -03:00 |
ltm.h
|
tables and strings respect __len metamethod
|
2007-09-10 14:59:32 -03:00 |
lua.c
|
'checkversion' implemented in the auxiliary library
|
2009-06-18 15:59:58 -03:00 |
lua.h
|
new function 'lua_version' (so that 'checkversion' can be implemented
|
2009-06-18 15:59:18 -03:00 |
luaconf.h
|
new module 'lbitlib.c' for bitwise operations
|
2009-07-01 13:16:40 -03:00 |
lualib.h
|
new module 'lbitlib.c' for bitwise operations
|
2009-07-01 13:16:40 -03:00 |
lundump.c
|
no more code checking
|
2009-04-30 14:42:21 -03:00 |
lundump.h
|
new versions by lhf
|
2005-11-16 09:55:07 -02:00 |
lvm.c
|
bug: 'luaV_settable' may invalidate a reference to a table and try
|
2009-07-01 17:31:25 -03:00 |
lvm.h
|
exports luaV_arith to be used by lua_arith
|
2009-06-17 14:51:07 -03:00 |
lzio.c
|
small improvement
|
2005-06-03 17:16:16 -03:00 |
lzio.h
|
new macro 'zungetc'
|
2009-05-18 14:26:25 -03:00 |
makefile
|
new module 'lbitlib.c' for bitwise operations
|
2009-07-01 13:16:40 -03:00 |