diff options
Diffstat (limited to 'src/plugins/irc/irc-ctcp.c')
-rw-r--r-- | src/plugins/irc/irc-ctcp.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/plugins/irc/irc-ctcp.c b/src/plugins/irc/irc-ctcp.c index 0af20ddfb..e4202698c 100644 --- a/src/plugins/irc/irc-ctcp.c +++ b/src/plugins/irc/irc-ctcp.c @@ -126,10 +126,10 @@ irc_ctcp_display_request (struct t_irc_server *server, weechat_prefix ("network"), IRC_COLOR_CHAT_NICK, nick, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, IRC_COLOR_CHAT_CHANNEL, ctcp, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, (arguments) ? " " : "", (arguments) ? arguments : "", (reply && !reply[0]) ? _(" (blocked)") : ""); @@ -188,10 +188,10 @@ irc_ctcp_display_reply_from_nick (struct t_irc_server *server, weechat_prefix ("network"), IRC_COLOR_CHAT_NICK, nick, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, IRC_COLOR_CHAT_CHANNEL, arguments + 1, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, difftime / 1000000, (difftime % 1000000) / 1000, (NG_("second", "seconds", @@ -210,10 +210,10 @@ irc_ctcp_display_reply_from_nick (struct t_irc_server *server, weechat_prefix ("network"), IRC_COLOR_CHAT_NICK, nick, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, IRC_COLOR_CHAT_CHANNEL, arguments + 1, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, " ", pos_args); } @@ -227,7 +227,7 @@ irc_ctcp_display_reply_from_nick (struct t_irc_server *server, weechat_prefix ("network"), IRC_COLOR_CHAT_NICK, nick, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, IRC_COLOR_CHAT_CHANNEL, arguments + 1, "", @@ -286,10 +286,10 @@ irc_ctcp_reply_to_nick (struct t_irc_server *server, weechat_prefix ("network"), IRC_COLOR_CHAT_NICK, nick, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, IRC_COLOR_CHAT_CHANNEL, ctcp, - (str_args[0]) ? IRC_COLOR_CHAT : "", + (str_args[0]) ? IRC_COLOR_RESET : "", (str_args[0]) ? " " : "", str_args); number++; @@ -823,7 +823,7 @@ irc_ctcp_recv_dcc (struct t_irc_server *server, const char *nick, IRC_PLUGIN_NAME, IRC_COLOR_CHAT_NICK, nick, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, pos_file); free (dcc_args); return; @@ -922,7 +922,7 @@ irc_ctcp_recv (struct t_irc_server *server, const char *command, weechat_prefix ("action"), (ptr_nick) ? ptr_nick->color : ((nick) ? irc_nick_find_color (nick) : IRC_COLOR_CHAT_NICK), nick, - (pos_args) ? IRC_COLOR_CHAT : "", + (pos_args) ? IRC_COLOR_RESET : "", (pos_args) ? " " : "", (pos_args) ? pos_args : ""); } @@ -960,7 +960,7 @@ irc_ctcp_recv (struct t_irc_server *server, const char *command, (nick_is_me) ? IRC_COLOR_CHAT_NICK_SELF : irc_nick_color_for_pv (ptr_channel, nick), nick, - (pos_args) ? IRC_COLOR_CHAT : "", + (pos_args) ? IRC_COLOR_RESET : "", (pos_args) ? " " : "", (pos_args) ? pos_args : ""); weechat_hook_signal_send ("irc_pv", @@ -1019,10 +1019,10 @@ irc_ctcp_recv (struct t_irc_server *server, const char *command, weechat_prefix ("network"), IRC_COLOR_CHAT_NICK, nick, - IRC_COLOR_CHAT, + IRC_COLOR_RESET, IRC_COLOR_CHAT_CHANNEL, arguments + 1, - (pos_args) ? IRC_COLOR_CHAT : "", + (pos_args) ? IRC_COLOR_RESET : "", (pos_args) ? " " : "", (pos_args) ? pos_args : ""); } |