diff options
author | Benoit Germain <bnt.germain@gmail.com> | 2013-01-26 20:21:39 +0100 |
---|---|---|
committer | Benoit Germain <bnt.germain@gmail.com> | 2013-01-26 20:21:39 +0100 |
commit | fb0c67b1c95b6a595c0cd34a66136af6193b4d1b (patch) | |
tree | badb5e95c0b7d9acb6be371c9163801b816b8731 /src/tools.h | |
parent | 68d8db431ec2b739dc53233d6b4d8aeee9324e48 (diff) | |
download | lanes-3.4.4.tar.gz lanes-3.4.4.tar.bz2 lanes-3.4.4.zip |
version 3.4.4v3.4.4
* bugfix: take into account the fact that "coroutine" is no longer part of base library in Lua 5.2
* bugfix: if "bit32" was listed in the libraries, it wouldn't open (library list parsing failing on digits)
* bugfix: Use luaL_requiref() to open standard libraries in Lua 5.2 as we should
* bugfix: any Lua state created by Lanes reuses the allocator function of the originating state
* bugfix: don't call on_state_create() while GC is suspended during lua state initialization
Diffstat (limited to 'src/tools.h')
-rw-r--r-- | src/tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools.h b/src/tools.h index d0169cf..e4fbd94 100644 --- a/src/tools.h +++ b/src/tools.h | |||
@@ -73,7 +73,7 @@ extern char const* debugspew_indent; | |||
73 | 73 | ||
74 | void luaG_dump( lua_State* L ); | 74 | void luaG_dump( lua_State* L ); |
75 | 75 | ||
76 | lua_State* luaG_newstate( char const* libs, lua_CFunction _on_state_create); | 76 | lua_State* luaG_newstate( lua_State* _from, char const* libs, lua_CFunction _on_state_create); |
77 | 77 | ||
78 | typedef struct { | 78 | typedef struct { |
79 | volatile int refcount; | 79 | volatile int refcount; |