1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 10:13:12 +02:00

Add option irc.look.item_nick_prefix, rename some IRC options for bar items

This commit is contained in:
Sebastien Helleu
2010-02-06 12:14:45 +01:00
parent fa8ff80fc1
commit bd1b6c1794
23 changed files with 356 additions and 242 deletions
+2 -2
View File
@@ -2969,7 +2969,7 @@ irc_server_remove_away ()
for (ptr_channel = ptr_server->channels; ptr_channel; ptr_channel = ptr_channel->next_channel)
{
if (ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
irc_channel_remove_away (ptr_channel);
irc_channel_remove_away (ptr_server, ptr_channel);
}
}
}
@@ -3013,7 +3013,7 @@ irc_server_set_away (struct t_irc_server *server, const char *nick, int is_away)
{
/* set away flag for nick on channel */
if (ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
irc_channel_set_away (ptr_channel, nick, is_away);
irc_channel_set_away (server, ptr_channel, nick, is_away);
/* set/del "away" local variable */
if (is_away)