summaryrefslogtreecommitdiff
path: root/loadlib.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* avoid using function environments in C libraries (as it probably willRoberto Ierusalimschy2010-03-171-11/+10
* HINSTANCE -> HMODULE (they are the same thing, but the MS documentationRoberto Ierusalimschy2010-01-131-4/+12
* on 64-bit machines, an address may not fit into a 'long', so itRoberto Ierusalimschy2010-01-131-2/+2
* 'searchpath' changes dots into directory separatorsRoberto Ierusalimschy2010-01-111-2/+2
* conversion from pointer to void to pointer to function seems moreRoberto Ierusalimschy2010-01-111-2/+2
* include of 'windows.h' moved to where it is neededRoberto Ierusalimschy2010-01-111-1/+2
* Dynamic C functions should be created with the global table as theirRoberto Ierusalimschy2010-01-111-2/+4
* "-"-trick in C packages now accept name-v13...Roberto Ierusalimschy2010-01-111-7/+14
* no need to use two different defines (LUA_DL_DLOPEN and LUA_USE_DLOPEN)Roberto Ierusalimschy2010-01-061-3/+3
* comments + small detailsRoberto Ierusalimschy2010-01-041-16/+14
* no more pseudoindex LUA_GLOBALSINDEX; global table now accessibleRoberto Ierusalimschy2009-12-221-4/+5
* macro name change: LUA_PATH->LUA_PATH_VAR, LUA_CPATH->LUA_CPATH_VAR,Roberto Ierusalimschy2009-12-171-22/+22
* several configuration options that do not change often moved out ofRoberto Ierusalimschy2009-12-171-1/+38
* new mark LUAMOD_API for all luaopen_* functionsRoberto Ierusalimschy2009-11-241-2/+2
* 'module' returns the new module (to be used with lexical environments)Roberto Ierusalimschy2009-11-161-2/+2
* new function lua_copyRoberto Ierusalimschy2009-10-051-3/+2
* "bug": lua_createtable with sizes changed (array <-> record)Roberto Ierusalimschy2009-09-071-2/+2
* avoid using 'UNUSED' (not defined outside the kernel)Roberto Ierusalimschy2009-07-151-5/+5
* added "\n" at the end of 'package.config' (so that the stringRoberto Ierusalimschy2009-06-041-2/+2
* 'loadlib(lib, "*")' loads 'lib' with global names exported to allRoberto Ierusalimschy2009-03-261-13/+20
* change in error messageRoberto Ierusalimschy2008-08-061-3/+2
* bug: 'module' now checks that is caller is a Lua functionRoberto Ierusalimschy2008-08-051-5/+8
* new function 'package.searchpath'Roberto Ierusalimschy2007-12-121-11/+29
* clearing some old compatibility codeRoberto Ierusalimschy2007-06-211-5/+1
* BUG: loadlib should not use Lua internals (lobject.h)Roberto Ierusalimschy2007-03-261-7/+7
* new constant LUA_OKRoberto Ierusalimschy2006-10-101-4/+2
* avoid trailing white spacesRoberto Ierusalimschy2006-09-111-3/+3
* small bug: should not use string after popping itRoberto Ierusalimschy2006-07-031-3/+4
* detailsRoberto Ierusalimschy2006-06-221-5/+5
* environment variable names should be configurableRoberto Ierusalimschy2006-04-101-5/+1
* small optimizations (lua_newtable -> lua_createtable)Roberto Ierusalimschy2005-12-291-5/+5
* (much) better error messages for 'require'Roberto Ierusalimschy2005-12-191-18/+32
* clearer error message for uninstalled loadlibRoberto Ierusalimschy2005-12-071-6/+3
* avoid comparisons between (void *) and (int *)Roberto Ierusalimschy2005-10-171-5/+6
* avoid some warningsRoberto Ierusalimschy2005-10-061-5/+7
* registry._LOADED created "on demand"Roberto Ierusalimschy2005-10-031-2/+2
* unused assignmentRoberto Ierusalimschy2005-09-301-3/+1
* avoid 'PathRemoveFileSpec' (not very portable)Roberto Ierusalimschy2005-09-061-4/+4
* default for 'module' is opaque (with option 'seeall')Roberto Ierusalimschy2005-08-311-44/+71
* detailRoberto Ierusalimschy2005-08-261-3/+3
* no more 'luaL_get/setfield' (replaced by more direct luaL_findtable)Roberto Ierusalimschy2005-08-261-21/+17
* no more '-w' option + new way to check module existenceRoberto Ierusalimschy2005-08-251-12/+15
* luaL_checkudata raises an error if value is not correctRoberto Ierusalimschy2005-08-171-5/+3
* luaL_openlib -> luaL_register, luaL_putchar -> luaL_addcharRoberto Ierusalimschy2005-08-151-2/+2
* correct name to open package libraryRoberto Ierusalimschy2005-08-101-2/+2
* store some configuration informationRoberto Ierusalimschy2005-08-091-1/+5
* new loader for "all-in-one" C packagesRoberto Ierusalimschy2005-08-011-65/+89
* searchpath is "private affair" of loadlibRoberto Ierusalimschy2005-07-131-16/+46
* elimination of common code + better error messageRoberto Ierusalimschy2005-07-121-39/+51
* ';;' in a path is replaced by default path + '!' (in Windows) isRoberto Ierusalimschy2005-07-111-18/+46