summaryrefslogtreecommitdiff
path: root/src/fe-common/core
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-06-27 19:11:25 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-06-27 19:11:25 +0000
commit7718294fa0e50e658dadc921dc03cbd90f02b610 (patch)
treef1986268d00090ac6dee68c07ab37733f5bedffa /src/fe-common/core
parent2f539725231379b47e7470319a611a059aa41433 (diff)
downloadirssi-7718294fa0e50e658dadc921dc03cbd90f02b610.zip
"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
Diffstat (limited to 'src/fe-common/core')
-rw-r--r--src/fe-common/core/hilight-text.c3
1 files changed, 3 insertions, 0 deletions
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);