summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-02-13 12:05:02 +0100
committerSebastien Helleu <flashcode@flashtux.org>2010-02-13 12:05:02 +0100
commit34272b7e4dbc6bf826b50c5e83fea255fc3bea8a (patch)
treecb72dde2f168f7dc3f3da2c83845ba066d7cb15c /src/plugins
parent922e67cabd767c3da74de6d2c9aa59078fa4ad0f (diff)
downloadweechat-34272b7e4dbc6bf826b50c5e83fea255fc3bea8a.zip
Fix color of word "Notice" when sending IRC notice
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/irc/irc-command.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c
index 6f4dc7791..d95e231f8 100644
--- a/src/plugins/irc/irc-command.c
+++ b/src/plugins/irc/irc-command.c
@@ -2493,8 +2493,10 @@ irc_command_notice (void *data, struct t_gui_buffer *buffer, int argc,
weechat_config_boolean (irc_config_network_colors_receive));
ptr_channel = irc_channel_search (ptr_server, argv[arg_nick]);
weechat_printf ((ptr_channel) ? ptr_channel->buffer : ptr_server->buffer,
- "%sNotice -> %s%s%s: %s",
+ "%s%sNotice%s -> %s%s%s: %s",
weechat_prefix ("network"),
+ IRC_COLOR_NOTICE,
+ IRC_COLOR_CHAT,
(irc_channel_is_channel (argv[arg_nick])) ?
IRC_COLOR_CHAT_CHANNEL : IRC_COLOR_CHAT_NICK,
argv[arg_nick],