compat: reject interpret modifier predicate with more than one value
authorRan Benita <ran@unusedvar.com>
Tue, 12 Nov 2019 20:31:46 +0000 (22:31 +0200)
committerRan Benita <ran@unusedvar.com>
Tue, 12 Nov 2019 20:31:46 +0000 (22:31 +0200)
Given

    interpret ISO_Level3_Shift+AnyOf(all,extraneous) { ... };

Previously, extraneous (and further) was ignored. Now it's rejected.

Signed-off-by: Ran Benita <ran@unusedvar.com>
src/xkbcomp/compat.c

index bd587c8..cee962e 100644 (file)
@@ -265,7 +265,7 @@ ResolveStateAndPredicate(ExprDef *expr, enum xkb_match_operation *pred_rtrn,
     if (expr->expr.op == EXPR_ACTION_DECL) {
         const char *pred_txt = xkb_atom_text(info->ctx, expr->action.name);
         if (!LookupString(symInterpretMatchMaskNames, pred_txt, pred_rtrn) ||
-            !expr->action.args) {
+            !expr->action.args || expr->action.args->common.next) {
             log_err(info->ctx,
                     "Illegal modifier predicate \"%s\"; Ignored\n", pred_txt);
             return false;