imcontext: Take out the warnings
authorMatthias Clasen <mclasen@redhat.com>
Mon, 22 Feb 2021 20:00:58 +0000 (15:00 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 22 Feb 2021 20:08:58 +0000 (15:08 -0500)
Don't warn about Compose file constructs we don't
support. We haven't supported these for a long time,
and nobody has every complained. No need to wake
up sleeping dogs.

gtk/gtkcomposetable.c

index 09cf7b8e8fdbbc9bfa9c917480827a3582ed41df..a39258f65963103540c7c74d4d0ce80573d00df3 100644 (file)
@@ -99,9 +99,6 @@ parse_compose_value (GtkComposeData *compose_data,
           while (*p && g_ascii_isspace (*p))
             p++;
 
-          if (*p != '\0' && *p != '#')
-            g_warning ("Ignoring keysym after string: %s: %s", val, line);
-
           compose_data->value = g_string_free (value, FALSE);
           return TRUE;
         }
@@ -248,10 +245,7 @@ parse_compose_line (GList       **compose_list,
     return;
 
   if (g_str_has_prefix (line, "include "))
-    {
-      g_warning ("include in Compose files not supported: %s", line);
-      return;
-    }
+    return;
 
   components = g_strsplit (line, ":", 2);