mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
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
This commit is contained in:
parent
832075c89d
commit
af95ca3a7d
@ -370,7 +370,7 @@ void printtext_multiline(void *server, const char *target, int level,
|
|||||||
|
|
||||||
lines = g_strsplit(text, "\n", -1);
|
lines = g_strsplit(text, "\n", -1);
|
||||||
for (tmp = lines; *tmp != NULL; tmp++)
|
for (tmp = lines; *tmp != NULL; tmp++)
|
||||||
printtext(NULL, NULL, MSGLEVEL_NEVER, format, *tmp);
|
printtext(NULL, NULL, level, format, *tmp);
|
||||||
g_strfreev(lines);
|
g_strfreev(lines);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user