From 2a10674ff619f042c580e69e7160d834903b4273 Mon Sep 17 00:00:00 2001 From: marha Date: Wed, 31 Oct 2012 08:37:31 +0100 Subject: Converted error message which wasn't realy an error message to a warning Also print the symbol name in the warning message --- xkbcomp/parseutils.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'xkbcomp/parseutils.c') diff --git a/xkbcomp/parseutils.c b/xkbcomp/parseutils.c index 253cd9dae..025e1ef3f 100644 --- a/xkbcomp/parseutils.c +++ b/xkbcomp/parseutils.c @@ -230,7 +230,12 @@ InterpCreate(const char *sym_str, ExprDef * match) def->common.stmtType = StmtInterpDef; def->common.next = NULL; if (LookupKeysym(sym_str, &def->sym) == 0) + { def->ignore = True; + if (warningLevel > 0) + WARN1("Couldn't lookup keysym %s\n", sym_str); + ACTION("Symbol interpretation ignored\n"); + } else def->ignore = False; def->match = match; -- cgit v1.2.3