Mirror of the amazing lua scripting language
#lua #script #scripting #script-engine #embed #embedded #script-language

Roberto Ierusalimschy b51d76ce8d when doing hard memory tests, perform a full GC at every possible step 15 gadi atpakaļ
bugs 95cbc402dc "But" -> "Bug" (misspelling) 16 gadi atpakaļ
lapi.c 7fe405739c renaming: 'lua_upvaladdr' -> 'lua_upvalueid', 16 gadi atpakaļ
lapi.h 4a714cebd1 API checks now have explanatory messages 16 gadi atpakaļ
lauxlib.c a5382b763c new function lua_copy 16 gadi atpakaļ
lauxlib.h 4a818f068a 'checkversion' implemented in the auxiliary library 16 gadi atpakaļ
lbaselib.c c5050b1c41 functions 'getfenv' and 'setfenv' are deprecated 15 gadi atpakaļ
lbitlib.c 88564c3aec Standard library for bitwise operations 16 gadi atpakaļ
lcode.c fcc46467fa limit of constants per function changed to 2^26 using extra arguments 16 gadi atpakaļ
lcode.h fcc46467fa limit of constants per function changed to 2^26 using extra arguments 16 gadi atpakaļ
lctype.c 139d562861 type of 'luai_ctype_' array changed to unsigned (safer for bitwise 16 gadi atpakaļ
lctype.h 139d562861 type of 'luai_ctype_' array changed to unsigned (safer for bitwise 16 gadi atpakaļ
ldblib.c 7fe405739c renaming: 'lua_upvaladdr' -> 'lua_upvalueid', 16 gadi atpakaļ
ldebug.c b114c99a60 two small bugs: 'debug.getinfo' did not consider negative indices as out 16 gadi atpakaļ
ldebug.h 2258ec6bc9 'getline' renamed to 'getfuncline' (to avoid problems with POSIX) 16 gadi atpakaļ
ldo.c 5bc91c6405 no more one environment per thread: all threads share a single global 16 gadi atpakaļ
ldo.h f76f4cb79d new way to control stack overflow, controling only total size of the stack 16 gadi atpakaļ
ldump.c 0ac3d07ea6 first implementation of lexical environments 16 gadi atpakaļ
lfunc.c 0ac3d07ea6 first implementation of lexical environments 16 gadi atpakaļ
lfunc.h 8718fda9b2 added LUAI_FUNC to functions not in the API 20 gadi atpakaļ
lgc.c 88eb901f81 registry and global table may be changed through the API without a 16 gadi atpakaļ
lgc.h b51d76ce8d when doing hard memory tests, perform a full GC at every possible step 15 gadi atpakaļ
linit.c 90e2a716c8 details + comments 16 gadi atpakaļ
liolib.c d9fbbe1f23 "file:write" returns "file" in case of success 16 gadi atpakaļ
llex.c 889284ebd0 hexadecimal escape sequences in strings + better error messages for 16 gadi atpakaļ
llex.h 916587508c parser keeps list of active local variables in a single dynamic array, 16 gadi atpakaļ
llimits.h b51d76ce8d when doing hard memory tests, perform a full GC at every possible step 15 gadi atpakaļ
lmathlib.c 3ca739b418 'math.random' uses lua_Number to manage its arguments (there is no 16 gadi atpakaļ
lmem.c bd869c7b31 details 19 gadi atpakaļ
lmem.h c6b442bd36 'luaM_freearray' does not need array type as argument 16 gadi atpakaļ
loadlib.c 95020afb63 'module' returns the new module (to be used with lexical environments) 15 gadi atpakaļ
lobject.c 49a67c6d3f new macro 'NILCONSTANT' to initialize nil constants 16 gadi atpakaļ
lobject.h 2583bac3d3 several small changes to simplify changing TValue if needed 16 gadi atpakaļ
lopcodes.c 84b3daebbd generic for coded as two dedicated instructions to simplify resumption 17 gadi atpakaļ
lopcodes.h 77077b39d5 comment explaining OP_VARARG was wrong (and corresponding code was not 16 gadi atpakaļ
loslib.c f096ab5421 correct way to check arguments to 'strftime' 16 gadi atpakaļ
lparser.c 1448e736f0 better documentation for constructor syntax 16 gadi atpakaļ
lparser.h 916587508c parser keeps list of active local variables in a single dynamic array, 16 gadi atpakaļ
lstate.c 5bc91c6405 no more one environment per thread: all threads share a single global 16 gadi atpakaļ
lstate.h 5bc91c6405 no more one environment per thread: all threads share a single global 16 gadi atpakaļ
lstring.c ea44570883 hash table for strings is rehashed in place 16 gadi atpakaļ
lstring.h 8718fda9b2 added LUAI_FUNC to functions not in the API 20 gadi atpakaļ
lstrlib.c f4eed60ca9 better treatment of integer formats in string.format 16 gadi atpakaļ
ltable.c 49a67c6d3f new macro 'NILCONSTANT' to initialize nil constants 16 gadi atpakaļ
ltable.h fbf866a1a5 macro 'gkey' returns a "real" TValue* 16 gadi atpakaļ
ltablib.c ec52149485 'lua_lessthan' replaced by more generic 'lua_compare' 16 gadi atpakaļ
ltests.c 63a3b1a1eb macro 'checkvalref' redefined as function (to avoid too long macros) 16 gadi atpakaļ
ltests.h d3037d97ec several small improvements based on 'ci' being fixed now (including 16 gadi atpakaļ
ltm.c fe0838cd1c tables and strings respect __len metamethod 18 gadi atpakaļ
ltm.h fe0838cd1c tables and strings respect __len metamethod 18 gadi atpakaļ
lua.c bc439e21cd avoid an unprotected call to 'lua_tostring' which theoretically may 16 gadi atpakaļ
lua.h 7fe405739c renaming: 'lua_upvaladdr' -> 'lua_upvalueid', 16 gadi atpakaļ
luaconf.h c5050b1c41 functions 'getfenv' and 'setfenv' are deprecated 15 gadi atpakaļ
lualib.h 3abe3da9fb new module 'lbitlib.c' for bitwise operations 16 gadi atpakaļ
lundump.c 0ac3d07ea6 first implementation of lexical environments 16 gadi atpakaļ
lundump.h 2753134a38 new versions by lhf 20 gadi atpakaļ
lvm.c 77077b39d5 comment explaining OP_VARARG was wrong (and corresponding code was not 16 gadi atpakaļ
lvm.h 155dd01163 avoid using 'ttype' when there is an explicit test 16 gadi atpakaļ
lzio.c eca9fa02d2 small improvement 20 gadi atpakaļ
lzio.h 6956331093 new macro 'zungetc' 16 gadi atpakaļ
makefile 3abe3da9fb new module 'lbitlib.c' for bitwise operations 16 gadi atpakaļ