From 7718294fa0e50e658dadc921dc03cbd90f02b610 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 27 Jun 2000 19:11:25 +0000 Subject: [PATCH] "print text stripped" signal wasn't resent with MSGLEVEL_HILIGHT level. This broke at least logging hilighted messages. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@383 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/hilight-text.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/fe-common/core/hilight-text.c b/src/fe-common/core/hilight-text.c index d2da11cd..30e3ba62 100644 --- a/src/fe-common/core/hilight-text.c +++ b/src/fe-common/core/hilight-text.c @@ -182,6 +182,9 @@ static void sig_print_text_stripped(WINDOW_REC *window, SERVER_REC *server, cons if (best_match > 0) { hilight_next = FALSE; + signal_emit("print text stripped", 5, window, server, channel, GINT_TO_POINTER(level | MSGLEVEL_HILIGHT), str); + signal_stop(); + if (color == NULL) color = "\00316"; newstr = g_strconcat(isdigit(*color) ? "\003" : "", color, str, NULL); signal_emit("print text", 5, window, server, channel, GINT_TO_POINTER(level | MSGLEVEL_HILIGHT), newstr);