mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 22:20:24 +00:00
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:
parent
f7c4375509
commit
61f709811c
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user