From af95ca3a7d982d3868e220dfbf468c73deab7663 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 3 Dec 2000 06:22:35 +0000 Subject: [PATCH] printtext_multiline(): use the specified level, not MSGLEVEL_NEVER always. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@946 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/printtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/core/printtext.c b/src/fe-common/core/printtext.c index 4c4a7a70..a0c5d077 100644 --- a/src/fe-common/core/printtext.c +++ b/src/fe-common/core/printtext.c @@ -370,7 +370,7 @@ void printtext_multiline(void *server, const char *target, int level, lines = g_strsplit(text, "\n", -1); for (tmp = lines; *tmp != NULL; tmp++) - printtext(NULL, NULL, MSGLEVEL_NEVER, format, *tmp); + printtext(NULL, NULL, level, format, *tmp); g_strfreev(lines); }