1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 14:26:39 +02:00

Reformat multi-line comments

This commit is contained in:
Sebastien Helleu
2010-03-19 23:33:14 +01:00
parent bc3fa9fd4c
commit 2801b8437c
99 changed files with 887 additions and 648 deletions
+14 -12
View File
@@ -48,18 +48,20 @@ struct t_plugin_script *lua_current_script = NULL;
const char *lua_current_script_filename = NULL;
lua_State *lua_current_interpreter = NULL;
/* string used to execute action "install":
when signal "lua_install_script" is received, name of string
is added to this string, to be installed later by a timer (when nothing is
running in script)
*/
/*
* string used to execute action "install":
* when signal "lua_install_script" is received, name of string
* is added to this string, to be installed later by a timer (when nothing is
* running in script)
*/
char *lua_action_install_list = NULL;
/* string used to execute action "remove":
when signal "lua_remove_script" is received, name of string
is added to this string, to be removed later by a timer (when nothing is
running in script)
*/
/*
* string used to execute action "remove":
* when signal "lua_remove_script" is received, name of string
* is added to this string, to be removed later by a timer (when nothing is
* running in script)
*/
char *lua_action_remove_list = NULL;
@@ -157,7 +159,7 @@ weechat_lua_exec (struct t_plugin_script *script,
lua_current_script = old_lua_current_script;
return ret_value;
return ret_value;
}
int
@@ -218,7 +220,7 @@ weechat_lua_load (const char *filename)
#ifdef LUA_VERSION_NUM
if (luaL_dostring (lua_current_interpreter, weechat_lua_code) != 0)
#else
#else
if (lua_dostring (lua_current_interpreter, weechat_lua_code) != 0)
#endif
{