From 9edd61b91a02bda31fc6edd2c32c553e872b6ea2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Ko=C5=A1k=C3=A1r?= Date: Fri, 18 Jan 2019 20:01:01 +0100 Subject: Fix invalid error report on F_Accel field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit F_Accel is valid MovePtr field yet following error is reported: > Error: Field accel is not defined for an action of type MovePtr > Action definition ignored Signed-off-by: Miroslav Koškár --- action.c | 1 + 1 file changed, 1 insertion(+) diff --git a/action.c b/action.c index 4623c0c..6efe65b 100644 --- a/action.c +++ b/action.c @@ -627,6 +627,7 @@ HandleMovePtr(XkbDescPtr xkb, act->flags &= ~XkbSA_NoAcceleration; else act->flags |= XkbSA_NoAcceleration; + return True; } return ReportIllegal(action->type, field); } -- cgit v1.2.3