1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

missing space

This commit is contained in:
vague666 2018-06-09 05:55:25 +02:00
parent d2e1caf720
commit ba2554dd14

View File

@ -83,7 +83,7 @@ static int ignore_match_pattern(IGNORE_REC *rec, const char *text)
* match levels if set. */
#define FLAG_MSGLEVELS ( MSGLEVEL_NO_ACT | MSGLEVEL_HIDDEN )
#define ignore_match_level(rec, level) \
(((level & FLAG_MSGLEVELS)!= 0) ? \
(((level & FLAG_MSGLEVELS) != 0) ? \
((~FLAG_MSGLEVELS & level) & (rec)->level) != 0 : \
((rec)->level & FLAG_MSGLEVELS ? 0 : \
(level & (rec)->level) != 0))