summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/en/weechat_plugin_api.en.txt6
-rw-r--r--doc/fr/weechat_plugin_api.fr.txt6
-rw-r--r--doc/it/weechat_plugin_api.it.txt6
-rw-r--r--src/plugins/irc/irc-bar-item.c6
4 files changed, 12 insertions, 12 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt
index 7dd9e654a..795a78fa3 100644
--- a/doc/en/weechat_plugin_api.en.txt
+++ b/doc/en/weechat_plugin_api.en.txt
@@ -8320,9 +8320,9 @@ Extra info for bar item "buffer_nicklist":
| nick | core | nick name
| prefix | core | prefix for nick
| group | core | group name
-| host | irc | host for nick (if known)
-| server | irc | internal name of server
-| channel | irc | channel name
+| irc_host | irc | host for nick (if known)
+| irc_server | irc | internal name of server
+| irc_channel | irc | channel name
|========================================
[NOTE]
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt
index 1e8d69403..df4068440 100644
--- a/doc/fr/weechat_plugin_api.fr.txt
+++ b/doc/fr/weechat_plugin_api.fr.txt
@@ -8458,9 +8458,9 @@ Informations additionnelles pour l'objet de barre "buffer_nicklist":
| nick | core | pseudonyme
| prefix | core | préfixe du pseudonyme
| group | core | nom du groupe
-| host | irc | nom d'hôte pour le pseudonyme (si connu)
-| server | irc | nom interne du serveur
-| channel | irc | nom du canal
+| irc_host | irc | nom d'hôte pour le pseudonyme (si connu)
+| irc_server | irc | nom interne du serveur
+| irc_channel | irc | nom du canal
|========================================
[NOTE]
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt
index 8c3c82d4c..feaf0ce95 100644
--- a/doc/it/weechat_plugin_api.it.txt
+++ b/doc/it/weechat_plugin_api.it.txt
@@ -8377,9 +8377,9 @@ Extra info for bar item "buffer_nicklist":
| nick | core | nick name
| prefix | core | prefix for nick
| group | core | group name
-| host | irc | host for nick (if known)
-| server | irc | internal name of server
-| channel | irc | channel name
+| irc_host | irc | host for nick (if known)
+| irc_server | irc | internal name of server
+| irc_channel | irc | channel name
|========================================
[NOTE]
diff --git a/src/plugins/irc/irc-bar-item.c b/src/plugins/irc/irc-bar-item.c
index 633db73c8..c354dc9d0 100644
--- a/src/plugins/irc/irc-bar-item.c
+++ b/src/plugins/irc/irc-bar-item.c
@@ -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;
}