bugs
|
GC may get stuck during a parser and avoids proper resizing of the
|
2009-11-23 12:59:30 -02:00 |
lapi.c
|
renaming: 'lua_upvaladdr' -> 'lua_upvalueid',
|
2009-11-09 17:10:48 -02:00 |
lapi.h
|
API checks now have explanatory messages
|
2009-08-31 11:26:28 -03:00 |
lauxlib.c
|
new function lua_copy
|
2009-10-05 13:44:33 -03:00 |
lauxlib.h
|
'checkversion' implemented in the auxiliary library
|
2009-06-18 15:59:58 -03:00 |
lbaselib.c
|
comments
|
2009-11-19 14:26:29 -02:00 |
lbitlib.c
|
Standard library for bitwise operations
|
2009-07-01 13:17:08 -03:00 |
lcode.c
|
limit of constants per function changed to 2^26 using extra arguments
|
2009-09-23 17:33:05 -03:00 |
lcode.h
|
limit of constants per function changed to 2^26 using extra arguments
|
2009-09-23 17:33:05 -03:00 |
lctype.c
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
lctype.h
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
ldblib.c
|
'debug.joinupvalue' -> 'debug.upvaluejoin'
|
2009-11-18 13:50:18 -02:00 |
ldebug.c
|
two small bugs: 'debug.getinfo' did not consider negative indices as out
|
2009-10-13 16:07:40 -03:00 |
ldebug.h
|
'getline' renamed to 'getfuncline' (to avoid problems with POSIX)
|
2009-06-10 13:57:53 -03:00 |
ldo.c
|
ensure that reader function cannot yield during parsing
|
2009-11-17 14:46:44 -02:00 |
ldo.h
|
remove declaration of removed function
|
2009-11-19 14:24:41 -02:00 |
ldump.c
|
first implementation of lexical environments
|
2009-09-30 12:38:37 -03:00 |
lfunc.c
|
first implementation of lexical environments
|
2009-09-30 12:38:37 -03:00 |
lfunc.h
|
added LUAI_FUNC to functions not in the API
|
2005-04-25 16:24:10 -03:00 |
lgc.c
|
(huge) simplification of GC management
|
2009-11-18 11:13:47 -02:00 |
lgc.h
|
(huge) simplification of GC management
|
2009-11-18 11:13:47 -02:00 |
linit.c
|
details + comments
|
2009-09-05 09:39:29 -03:00 |
liolib.c
|
"file:write" returns "file" in case of success
|
2009-09-01 16:10:48 -03:00 |
llex.c
|
parser/scanner keep GC running
|
2009-11-17 14:33:38 -02:00 |
llex.h
|
parser keeps list of active local variables in a single dynamic array,
|
2009-10-11 17:02:19 -03:00 |
llimits.h
|
when doing hard memory tests, perform a full GC at every possible step
|
2009-11-17 09:56:03 -02: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
|
'module' returns the new module (to be used with lexical environments)
|
2009-11-16 13:51:19 -02:00 |
lobject.c
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
lobject.h
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
lopcodes.c
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
lopcodes.h
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
loslib.c
|
'os.exit' should close state only when second argument is true
|
2009-11-23 16:20:38 -02:00 |
lparser.c
|
parser/scanner keep GC running
|
2009-11-17 14:33:38 -02:00 |
lparser.h
|
parser keeps list of active local variables in a single dynamic array,
|
2009-10-11 17:02:19 -03:00 |
lstate.c
|
(huge) simplification of GC management
|
2009-11-18 11:13:47 -02:00 |
lstate.h
|
(huge) simplification of GC management
|
2009-11-18 11:13:47 -02: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
|
new macro 'isdummy'
|
2009-11-19 15:54:07 -02:00 |
ltable.h
|
macro 'gkey' returns a "real" TValue*
|
2009-11-06 15:07:48 -02:00 |
ltablib.c
|
'lua_lessthan' replaced by more generic 'lua_compare'
|
2009-06-17 14:53:50 -03:00 |
ltests.c
|
macro 'checkvalref' redefined as function (to avoid too long macros)
|
2009-11-06 15:08:43 -02:00 |
ltests.h
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
ltm.c
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
ltm.h
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
lua.c
|
avoid an unprotected call to 'lua_tostring' which theoretically may
|
2009-08-10 13:23:19 -03:00 |
lua.h
|
renaming: 'lua_upvaladdr' -> 'lua_upvalueid',
|
2009-11-09 17:10:48 -02:00 |
luaconf.h
|
new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and
|
2009-11-19 17:06:52 -02:00 |
lualib.h
|
new module 'lbitlib.c' for bitwise operations
|
2009-07-01 13:16:40 -03:00 |
lundump.c
|
first implementation of lexical environments
|
2009-09-30 12:38:37 -03:00 |
lundump.h
|
new versions by lhf
|
2005-11-16 09:55:07 -02:00 |
lvm.c
|
comment explaining OP_VARARG was wrong (and corresponding code was not
|
2009-10-28 10:20:07 -02:00 |
lvm.h
|
'luaV_arith' must be marked 'LUAI_FUNC' (as all non-static functions)
|
2009-11-19 17:04:58 -02: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 |