1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 20:36:38 +02:00

lua: fix interpreter used in API functions (bug #39470)

This commit is contained in:
Sebastien Helleu
2013-07-13 07:22:02 +02:00
parent bd3a12378e
commit 4668f0bef5
4 changed files with 696 additions and 687 deletions
+3 -1
View File
@@ -50,7 +50,9 @@ extern struct t_hashtable *weechat_lua_tohashtable (lua_State *interpreter,
int size,
const char *type_keys,
const char *type_values);
extern void *weechat_lua_exec (struct t_plugin_script *script, int ret_type,
extern void *weechat_lua_exec (struct t_plugin_script *script,
lua_State *interpreter,
int ret_type,
const char *function,
const char *format, void **argv);
extern void weechat_lua_register_lib(lua_State *L, const char *libname,