aboutsummaryrefslogtreecommitdiff
path: root/xkbcomp/parseutils.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2012-10-31 08:37:31 +0100
committermarha <marha@users.sourceforge.net>2012-10-31 08:37:31 +0100
commit2a10674ff619f042c580e69e7160d834903b4273 (patch)
tree70021ac64c7b0bed2354bbc1908e881c3f9adede /xkbcomp/parseutils.c
parent5bda4b6582522d21b15d62c5c76c71104e924cbc (diff)
downloadvcxsrv-2a10674ff619f042c580e69e7160d834903b4273.tar.gz
vcxsrv-2a10674ff619f042c580e69e7160d834903b4273.tar.bz2
vcxsrv-2a10674ff619f042c580e69e7160d834903b4273.zip
Converted error message which wasn't realy an error message to a warning
Also print the symbol name in the warning message
Diffstat (limited to 'xkbcomp/parseutils.c')
-rw-r--r--xkbcomp/parseutils.c5
1 files changed, 5 insertions, 0 deletions
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;