1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

/hilight list print output with enabled flags, except when -word and -nick are used

This commit is contained in:
Jari Matilainen 2015-11-09 23:06:56 +01:00
parent 7ab38f29ed
commit b333d10364

View File

@ -484,10 +484,14 @@ static void hilight_print(int index, HILIGHT_REC *rec)
GString *options;
options = g_string_new(NULL);
if (!rec->nick || !rec->word) {
if (rec->nick) g_string_append(options, "-nick ");
if (rec->word) g_string_append(options, "-word ");
}
if (rec->nick && rec->word) { /* default case, no option */ }
else if (rec->nick)
g_string_append(options, "-nick ");
else if (rec->word)
g_string_append(options, "-word ");
else
g_string_append(options, "-line ");
if (rec->nickmask) g_string_append(options, "-mask ");
if (rec->fullword) g_string_append(options, "-full ");