diff options
author | Timo Sirainen <cras@irssi.org> | 2000-12-03 06:22:35 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-12-03 06:22:35 +0000 |
commit | af95ca3a7d982d3868e220dfbf468c73deab7663 (patch) | |
tree | 1cde160a4e2ee27eff76f6ee67432f11a64e0153 /src/fe-common/core/printtext.c | |
parent | 832075c89d0c00432901b918f4f8f9b146b5f69d (diff) | |
download | irssi-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/fe-common/core/printtext.c')
-rw-r--r-- | src/fe-common/core/printtext.c | 2 |
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); } |