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

style format change

This commit is contained in:
vague666 2020-12-02 14:33:23 +01:00
parent 323b60f339
commit 69396482be

View File

@ -273,8 +273,8 @@ HILIGHT_REC *hilight_match(SERVER_REC *server, const char *channel,
for (tmp = hilights; tmp != NULL; tmp = tmp->next) {
HILIGHT_REC *rec = tmp->data;
if (rec->priority > priority && !rec->nickmask &&
hilight_match_level(rec, level) && hilight_match_channel(rec, channel) &&
if (rec->priority > priority && !rec->nickmask && hilight_match_level(rec, level) &&
hilight_match_channel(rec, channel) &&
(rec->servertag == NULL ||
(server != NULL && g_ascii_strcasecmp(rec->servertag, server->tag) == 0)) &&
hilight_match_text(rec, str, match_beg, match_end)) {