summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-12-03 06:22:35 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-12-03 06:22:35 +0000
commitaf95ca3a7d982d3868e220dfbf468c73deab7663 (patch)
tree1cde160a4e2ee27eff76f6ee67432f11a64e0153 /src
parent832075c89d0c00432901b918f4f8f9b146b5f69d (diff)
downloadirssi-af95ca3a7d982d3868e220dfbf468c73deab7663.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/fe-common/core/printtext.c2
1 files changed, 1 insertions, 1 deletions
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);
}