1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +02:00

lua: fix typo in comment

This commit is contained in:
Sebastien Helleu
2011-10-31 09:55:15 +01:00
parent 699e0e2ee1
commit b9297c4659
+3 -1
View File
@@ -326,10 +326,12 @@ weechat_lua_load (const char *filename)
lua_tostring (lua_current_interpreter, -1));
lua_close (lua_current_interpreter);
fclose (fp);
/* if script was registered, removing from list */
/* if script was registered, remove it from list */
if (lua_current_script)
script_remove (weechat_lua_plugin, &lua_scripts, &last_lua_script,
lua_current_script);
return 0;
}
fclose (fp);