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

irc: rename host/server/channel to irc_host/irc_server/irc_channel in irc focus hashtable for nicklist

This commit is contained in:
Sebastien Helleu
2011-08-16 09:15:00 +02:00
parent 8f0e0307c5
commit a234bc90ad
4 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -529,11 +529,11 @@ irc_bar_item_focus_buffer_nicklist (void *data,
ptr_nick = irc_nick_search (ptr_channel, nick);
if (ptr_nick && ptr_nick->host)
{
weechat_hashtable_set (info, "host", ptr_nick->host);
weechat_hashtable_set (info, "irc_host", ptr_nick->host);
}
}
weechat_hashtable_set (info, "server", ptr_server->name);
weechat_hashtable_set (info, "channel", ptr_channel->name);
weechat_hashtable_set (info, "irc_server", ptr_server->name);
weechat_hashtable_set (info, "irc_channel", ptr_channel->name);
return info;
}