diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/irc/irc-color.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-color.c b/src/plugins/irc/irc-color.c index 240c7a58c..dacfc4219 100644 --- a/src/plugins/irc/irc-color.c +++ b/src/plugins/irc/irc-color.c @@ -486,7 +486,7 @@ irc_color_decode_ansi_cb (void *data, const char *text) /* sequence "\33[m" resets color */ if (length < 4) - return strdup (weechat_color ("reset")); + return strdup (IRC_COLOR_RESET_STR); text2 = NULL; items = NULL; |