Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | new way to handle -E option (write a mark in the registry to avoidv5.2.0 | Roberto Ierusalimschy | 2011-12-12 | 1 | -2/+15 |
| | | | | reading environment variables) | ||||
* | comments | Roberto Ierusalimschy | 2011-11-30 | 1 | -5/+5 |
| | |||||
* | explicit option RTLD_LOCAL instead of 0 (Posix does not fix | Roberto Ierusalimschy | 2011-11-28 | 1 | -2/+2 |
| | | | | a default for dlopen) | ||||
* | 'LUA_DL_DLL' is not yet defined before the inclusion of 'lua.h' | Roberto Ierusalimschy | 2011-11-25 | 1 | -2/+2 |
| | |||||
* | using Lua buffers to build error messages | Roberto Ierusalimschy | 2011-11-10 | 1 | -9/+9 |
| | |||||
* | create error messages with a single concat, to avoid problems with | Roberto Ierusalimschy | 2011-11-09 | 1 | -20/+33 |
| | | | | creating strings piecemeal | ||||
* | configurable 'directory separator' in 'package.searchpath' | Roberto Ierusalimschy | 2011-11-09 | 1 | -11/+34 |
| | |||||
* | avoid calling "extra value" as if it were a function option | Roberto Ierusalimschy | 2011-11-06 | 1 | -4/+6 |
| | |||||
* | removed and deprecated functions really removed from the code base | Roberto Ierusalimschy | 2011-07-05 | 1 | -12/+5 |
| | |||||
* | 'package.loaders' -> 'package.searchers' | Roberto Ierusalimschy | 2011-06-28 | 1 | -24/+28 |
| | |||||
* | 'luaL_findtable' -> 'luaL_getsubtable' | Roberto Ierusalimschy | 2011-04-08 | 1 | -3/+3 |
| | |||||
* | loaders receive an extra argument returned by the searcher | Roberto Ierusalimschy | 2011-03-01 | 1 | -23/+32 |
| | | | | (typically the file name) | ||||
* | trying to avoid assumption that sizeof(char)==1 | Roberto Ierusalimschy | 2011-02-07 | 1 | -2/+2 |
| | |||||
* | optional argument 'sep' to 'searchpath' | Roberto Ierusalimschy | 2011-01-07 | 1 | -5/+9 |
| | |||||
* | no more sentinel to detect loops in module dependencies; | Roberto Ierusalimschy | 2010-11-10 | 1 | -12/+3 |
| | | | | usual message for infinite recursion is good enough. | ||||
* | new function 'luaL_setmetatable' | Roberto Ierusalimschy | 2010-11-10 | 1 | -3/+2 |
| | |||||
* | detail (ununsed parameter) | Roberto Ierusalimschy | 2010-10-29 | 1 | -3/+3 |
| | |||||
* | name "_ENV" configurable through 'luaconf.h' | Roberto Ierusalimschy | 2010-09-07 | 1 | -2/+2 |
| | |||||
* | detail: registry._PRELOAD must be a table, no need to check | Roberto Ierusalimschy | 2010-08-02 | 1 | -3/+1 |
| | |||||
* | 'module'/'luaL_register' and associates are deprecated | Roberto Ierusalimschy | 2010-07-28 | 1 | -5/+15 |
| | |||||
* | environment variables consulted by Lua may be version-specific | Roberto Ierusalimschy | 2010-07-25 | 1 | -11/+19 |
| | |||||
* | new module policy: C modules do not create globals and do not register | Roberto Ierusalimschy | 2010-07-02 | 1 | -2/+2 |
| | | | | | | themselves with 'require' (let 'require' do its work); new auxiliary functions luaL_newlib/luaL_newlibtable/luaL_setfuncs/luaL_requiref. Old luaL_register will be deprecated. | ||||
* | old (and complex) luaL_findtable now used only in compatibility code | Roberto Ierusalimschy | 2010-06-30 | 1 | -4/+4 |
| | | | | inside lauxlib.c | ||||
* | no more support for old Mac OS systems | Roberto Ierusalimschy | 2010-06-18 | 1 | -87/+3 |
| | |||||
* | use ANSI versions of DLL functions in Windows | Roberto Ierusalimschy | 2010-06-13 | 1 | -4/+4 |
| | |||||
* | factoring out common code in 'module' and 'luaL_openlib' | Roberto Ierusalimschy | 2010-05-31 | 1 | -14/+4 |
| | |||||
* | for compatibility only: 'module' changes the first upvalue of | Roberto Ierusalimschy | 2010-03-19 | 1 | -4/+8 |
| | | | | calling function to affect its environment | ||||
* | avoid using function environments in C libraries (as it probably will | Roberto Ierusalimschy | 2010-03-17 | 1 | -11/+10 |
| | | | | be deprecated) | ||||
* | HINSTANCE -> HMODULE (they are the same thing, but the MS documentation | Roberto Ierusalimschy | 2010-01-13 | 1 | -4/+12 |
| | | | | | uses the latter) + LoadLibrary -> LoadLibraryEx with optional arguments, to allow the option LOAD_WITH_ALTERED_SEARCH_PATH | ||||
* | on 64-bit machines, an address may not fit into a 'long', so it | Roberto Ierusalimschy | 2010-01-13 | 1 | -2/+2 |
| | | | | | is better to convert from pointer to void to pointer to function directly, even if ANSI C does not like it. | ||||
* | 'searchpath' changes dots into directory separators | Roberto Ierusalimschy | 2010-01-11 | 1 | -2/+2 |
| | |||||
* | conversion from pointer to void to pointer to function seems more | Roberto Ierusalimschy | 2010-01-11 | 1 | -2/+2 |
| | | | | | | "correct" if done through an integral type (because conversions between pointers and numbers are allowed, only "implementation defined"). | ||||
* | include of 'windows.h' moved to where it is needed | Roberto Ierusalimschy | 2010-01-11 | 1 | -1/+2 |
| | |||||
* | Dynamic C functions should be created with the global table as their | Roberto Ierusalimschy | 2010-01-11 | 1 | -2/+4 |
| | | | | initial environments | ||||
* | "-"-trick in C packages now accept name-v13... | Roberto Ierusalimschy | 2010-01-11 | 1 | -7/+14 |
| | |||||
* | no need to use two different defines (LUA_DL_DLOPEN and LUA_USE_DLOPEN) | Roberto Ierusalimschy | 2010-01-06 | 1 | -3/+3 |
| | |||||
* | comments + small details | Roberto Ierusalimschy | 2010-01-04 | 1 | -16/+14 |
| | |||||
* | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 2009-12-22 | 1 | -4/+5 |
| | | | | through registry | ||||
* | macro name change: LUA_PATH->LUA_PATH_VAR, LUA_CPATH->LUA_CPATH_VAR, | Roberto Ierusalimschy | 2009-12-17 | 1 | -22/+22 |
| | | | | LUA_PATHSEP->LUA_PATH_SEP, LUA_EXECDIR->LUA_EXEC_DIR | ||||
* | several configuration options that do not change often moved out of | Roberto Ierusalimschy | 2009-12-17 | 1 | -1/+38 |
| | | | | luaconf.h and into more internal files | ||||
* | new mark LUAMOD_API for all luaopen_* functions | Roberto Ierusalimschy | 2009-11-24 | 1 | -2/+2 |
| | |||||
* | 'module' returns the new module (to be used with lexical environments) | Roberto Ierusalimschy | 2009-11-16 | 1 | -2/+2 |
| | |||||
* | new function lua_copy | Roberto Ierusalimschy | 2009-10-05 | 1 | -3/+2 |
| | |||||
* | "bug": lua_createtable with sizes changed (array <-> record) | Roberto Ierusalimschy | 2009-09-07 | 1 | -2/+2 |
| | |||||
* | avoid using 'UNUSED' (not defined outside the kernel) | Roberto Ierusalimschy | 2009-07-15 | 1 | -5/+5 |
| | |||||
* | added "\n" at the end of 'package.config' (so that the string | Roberto Ierusalimschy | 2009-06-04 | 1 | -2/+2 |
| | | | | is a sequence of complete lines) | ||||
* | 'loadlib(lib, "*")' loads 'lib' with global names exported to all | Roberto Ierusalimschy | 2009-03-26 | 1 | -13/+20 |
| | |||||
* | change in error message | Roberto Ierusalimschy | 2008-08-06 | 1 | -3/+2 |
| | |||||
* | bug: 'module' now checks that is caller is a Lua function | Roberto Ierusalimschy | 2008-08-05 | 1 | -5/+8 |
| | |||||
* | new function 'package.searchpath' | Roberto Ierusalimschy | 2007-12-12 | 1 | -11/+29 |
| |