composetable: Warn when ignoring things

We should at least give a hint that we've seen the line,
otherwise people will wonder why nothing happened.
This commit is contained in:
Matthias Clasen 2021-02-01 12:21:06 -05:00
parent f7c4375509
commit 61f709811c

View File

@ -218,7 +218,10 @@ parse_compose_line (GList **compose_list,
return;
if (g_str_has_prefix (line, "include "))
return;
{
g_warning ("include in Compose files not supported: %s", line);
return;
}
components = g_strsplit (line, ":", 2);