Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |
| | ||||||
* | clearing some old compatibility code | Roberto Ierusalimschy | 2007-06-21 | 1 | -5/+1 | |
| | ||||||
* | BUG: loadlib should not use Lua internals (lobject.h) | Roberto Ierusalimschy | 2007-03-26 | 1 | -7/+7 | |
| | ||||||
* | new constant LUA_OK | Roberto Ierusalimschy | 2006-10-10 | 1 | -4/+2 | |
| | ||||||
* | avoid trailing white spaces | Roberto Ierusalimschy | 2006-09-11 | 1 | -3/+3 | |
| | ||||||
* | small bug: should not use string after popping it | Roberto Ierusalimschy | 2006-07-03 | 1 | -3/+4 | |
| | ||||||
* | details | Roberto Ierusalimschy | 2006-06-22 | 1 | -5/+5 | |
| | ||||||
* | environment variable names should be configurable | Roberto Ierusalimschy | 2006-04-10 | 1 | -5/+1 | |
| | ||||||
* | small optimizations (lua_newtable -> lua_createtable) | Roberto Ierusalimschy | 2005-12-29 | 1 | -5/+5 | |
| | ||||||
* | (much) better error messages for 'require' | Roberto Ierusalimschy | 2005-12-19 | 1 | -18/+32 | |
| | ||||||
* | clearer error message for uninstalled loadlib | Roberto Ierusalimschy | 2005-12-07 | 1 | -6/+3 | |
| | ||||||
* | avoid comparisons between (void *) and (int *) | Roberto Ierusalimschy | 2005-10-17 | 1 | -5/+6 | |
| | ||||||
* | avoid some warnings | Roberto Ierusalimschy | 2005-10-06 | 1 | -5/+7 | |
| | ||||||
* | registry._LOADED created "on demand" | Roberto Ierusalimschy | 2005-10-03 | 1 | -2/+2 | |
| | ||||||
* | unused assignment | Roberto Ierusalimschy | 2005-09-30 | 1 | -3/+1 | |
| | ||||||
* | avoid 'PathRemoveFileSpec' (not very portable) | Roberto Ierusalimschy | 2005-09-06 | 1 | -4/+4 | |
| | ||||||
* | default for 'module' is opaque (with option 'seeall') | Roberto Ierusalimschy | 2005-08-31 | 1 | -44/+71 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2005-08-26 | 1 | -3/+3 | |
| | ||||||
* | no more 'luaL_get/setfield' (replaced by more direct luaL_findtable) | Roberto Ierusalimschy | 2005-08-26 | 1 | -21/+17 | |
| | ||||||
* | no more '-w' option + new way to check module existence | Roberto Ierusalimschy | 2005-08-25 | 1 | -12/+15 | |
| | ||||||
* | luaL_checkudata raises an error if value is not correct | Roberto Ierusalimschy | 2005-08-17 | 1 | -5/+3 | |
| | | | | (like other luaL_check functions) | |||||
* | luaL_openlib -> luaL_register, luaL_putchar -> luaL_addchar | Roberto Ierusalimschy | 2005-08-15 | 1 | -2/+2 | |
| | ||||||
* | correct name to open package library | Roberto Ierusalimschy | 2005-08-10 | 1 | -2/+2 | |
| | ||||||
* | store some configuration information | Roberto Ierusalimschy | 2005-08-09 | 1 | -1/+5 | |
| | ||||||
* | new loader for "all-in-one" C packages | Roberto Ierusalimschy | 2005-08-01 | 1 | -65/+89 | |
| | ||||||
* | searchpath is "private affair" of loadlib | Roberto Ierusalimschy | 2005-07-13 | 1 | -16/+46 | |
| | ||||||
* | elimination of common code + better error message | Roberto Ierusalimschy | 2005-07-12 | 1 | -39/+51 | |
| | ||||||
* | ';;' in a path is replaced by default path + '!' (in Windows) is | Roberto Ierusalimschy | 2005-07-11 | 1 | -18/+46 | |
| | | | | replaced by executable's directory |