diff options
author | Daniel Stone <daniel@fooishbar.org> | 2011-06-21 14:03:12 +0100 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2011-06-21 14:03:12 +0100 |
commit | a2816345e58c88f5806a5c6df310c7d9c62264f0 (patch) | |
tree | 13cc2d4c8d263c1e21b6aba606b050f145cfa675 | |
parent | c7a42b364f0ca06d9859945fa11664d0e0ea2742 (diff) |
Interp: Don't make modifier lookup failure fatal
If we can't look up a modifier in a SymInterp declaration, don't make
that fatal enough to kill the entire file, just ignore it and move on.
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
-rw-r--r-- | compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -656,7 +656,7 @@ HandleInterpDef(InterpDef * def, XkbDescPtr xkb, unsigned merge, { ERROR("Couldn't determine matching modifiers\n"); ACTION("Symbol interpretation ignored\n"); - return False; + return True; } if (def->merge != MergeDefault) merge = def->merge; |