Roberto Ierusalimschy
a3addae036
lua_gettable and similars return type of gotten value
11 years ago
Roberto Ierusalimschy
c5fcba1a17
detail (changing some names of macros)
11 years ago
Roberto Ierusalimschy
b77a90681e
typos in comments
13 years ago
Roberto Ierusalimschy
ec22fc963a
detail (separate code to create 'searchers' table into a new function)
13 years ago
Roberto Ierusalimschy
b10dbe5c72
bug: C libraries must be unloaded after all other finalizers have run,
because a finalizer may use a C function from a C library
13 years ago
Roberto Ierusalimschy
e2fc2ce8df
new way to handle -E option (write a mark in the registry to avoid
reading environment variables)
13 years ago
Roberto Ierusalimschy
7bcb2462e4
comments
13 years ago
Roberto Ierusalimschy
aea68e5c54
explicit option RTLD_LOCAL instead of 0 (Posix does not fix
a default for dlopen)
13 years ago
Roberto Ierusalimschy
5184ff2096
'LUA_DL_DLL' is not yet defined before the inclusion of 'lua.h'
13 years ago
Roberto Ierusalimschy
3105febf9a
using Lua buffers to build error messages
13 years ago
Roberto Ierusalimschy
eef22fa4ce
create error messages with a single concat, to avoid problems with
creating strings piecemeal
13 years ago
Roberto Ierusalimschy
30cea671a7
configurable 'directory separator' in 'package.searchpath'
13 years ago
Roberto Ierusalimschy
6d8d282e0f
avoid calling "extra value" as if it were a function option
13 years ago
Roberto Ierusalimschy
79cbc3468c
removed and deprecated functions really removed from the code base
14 years ago
Roberto Ierusalimschy
49a01c0991
'package.loaders' -> 'package.searchers'
14 years ago
Roberto Ierusalimschy
19fbdf6cae
'luaL_findtable' -> 'luaL_getsubtable'
14 years ago
Roberto Ierusalimschy
e049abb69a
loaders receive an extra argument returned by the searcher
(typically the file name)
14 years ago
Roberto Ierusalimschy
e7a9c45a48
trying to avoid assumption that sizeof(char)==1
14 years ago
Roberto Ierusalimschy
67feed49f1
optional argument 'sep' to 'searchpath'
14 years ago
Roberto Ierusalimschy
0a6a6b9d9d
no more sentinel to detect loops in module dependencies;
usual message for infinite recursion is good enough.
14 years ago
Roberto Ierusalimschy
c97aa9485c
new function 'luaL_setmetatable'
14 years ago
Roberto Ierusalimschy
ba8dca00ac
detail (ununsed parameter)
14 years ago
Roberto Ierusalimschy
0df2238063
name "_ENV" configurable through 'luaconf.h'
14 years ago
Roberto Ierusalimschy
fd4b4a2a68
detail: registry._PRELOAD must be a table, no need to check
14 years ago
Roberto Ierusalimschy
d447945685
'module'/'luaL_register' and associates are deprecated
14 years ago
Roberto Ierusalimschy
73b0a3451d
environment variables consulted by Lua may be version-specific
14 years ago
Roberto Ierusalimschy
7192afafee
new module policy: C modules do not create globals and do not register
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.
15 years ago
Roberto Ierusalimschy
a139e2e003
old (and complex) luaL_findtable now used only in compatibility code
inside lauxlib.c
15 years ago
Roberto Ierusalimschy
bef5980744
no more support for old Mac OS systems
15 years ago
Roberto Ierusalimschy
9f48712c15
use ANSI versions of DLL functions in Windows
15 years ago
Roberto Ierusalimschy
2c1a5d678d
factoring out common code in 'module' and 'luaL_openlib'
15 years ago
Roberto Ierusalimschy
5ca7cdd709
for compatibility only: 'module' changes the first upvalue of
calling function to affect its environment
15 years ago
Roberto Ierusalimschy
1514e49d43
avoid using function environments in C libraries (as it probably will
be deprecated)
15 years ago
Roberto Ierusalimschy
b678f246a4
HINSTANCE -> HMODULE (they are the same thing, but the MS documentation
uses the latter) + LoadLibrary -> LoadLibraryEx with optional arguments,
to allow the option LOAD_WITH_ALTERED_SEARCH_PATH
15 years ago
Roberto Ierusalimschy
900b7d4514
on 64-bit machines, an address may not fit into a 'long', so it
is better to convert from pointer to void to pointer to function
directly, even if ANSI C does not like it.
15 years ago
Roberto Ierusalimschy
e4b4623abc
'searchpath' changes dots into directory separators
15 years ago
Roberto Ierusalimschy
d320c908d0
conversion from pointer to void to pointer to function seems more
"correct" if done through an integral type (because conversions
between pointers and numbers are allowed, only "implementation
defined").
15 years ago
Roberto Ierusalimschy
572b94bbcb
include of 'windows.h' moved to where it is needed
15 years ago
Roberto Ierusalimschy
692209fa8d
Dynamic C functions should be created with the global table as their
initial environments
15 years ago
Roberto Ierusalimschy
a541ada194
"-"-trick in C packages now accept name-v13...
15 years ago
Roberto Ierusalimschy
8cd395564c
no need to use two different defines (LUA_DL_DLOPEN and LUA_USE_DLOPEN)
15 years ago
Roberto Ierusalimschy
35e729fa6d
comments + small details
15 years ago
Roberto Ierusalimschy
f84b575cfa
no more pseudoindex LUA_GLOBALSINDEX; global table now accessible
through registry
15 years ago
Roberto Ierusalimschy
2108754e46
macro name change: LUA_PATH->LUA_PATH_VAR, LUA_CPATH->LUA_CPATH_VAR,
LUA_PATHSEP->LUA_PATH_SEP, LUA_EXECDIR->LUA_EXEC_DIR
15 years ago
Roberto Ierusalimschy
de6fc75d63
several configuration options that do not change often moved out of
luaconf.h and into more internal files
15 years ago
Roberto Ierusalimschy
a6f465f558
new mark LUAMOD_API for all luaopen_* functions
15 years ago
Roberto Ierusalimschy
95020afb63
'module' returns the new module (to be used with lexical environments)
15 years ago
Roberto Ierusalimschy
a5382b763c
new function lua_copy
15 years ago
Roberto Ierusalimschy
4b44793dc5
"bug": lua_createtable with sizes changed (array <-> record)
15 years ago
Roberto Ierusalimschy
a5f68589c0
avoid using 'UNUSED' (not defined outside the kernel)
16 years ago