1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 13:26:38 +02:00

Aliases are executed before WeeChat/IRC commands, /builtin command added

This commit is contained in:
Sebastien Helleu
2006-03-21 11:41:02 +00:00
parent 6a55ee4f79
commit 27fd4beca7
32 changed files with 2670 additions and 2276 deletions
+3 -3
View File
@@ -365,11 +365,11 @@ weechat_plugin_exec_command (t_weechat_plugin *plugin,
else
{
if (ptr_server && ptr_channel)
user_command (ptr_server, ptr_channel, command);
user_command (ptr_server, ptr_channel, command, 0);
else if (ptr_server && (ptr_server->buffer))
user_command (ptr_server, NULL, command);
user_command (ptr_server, NULL, command, 0);
else
user_command (NULL, NULL, command);
user_command (NULL, NULL, command, 0);
}
}