From 8055abe8fb03d6184a35a51a3b86851816660e3f Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 26 Mar 2003 13:40:20 +0000 Subject: [PATCH] was reversing the keylist --- plugins/keyboard/keysrc.yacc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/keyboard/keysrc.yacc b/plugins/keyboard/keysrc.yacc index c1f977e8..3e4eeff6 100644 --- a/plugins/keyboard/keysrc.yacc +++ b/plugins/keyboard/keysrc.yacc @@ -39,8 +39,8 @@ config: ; fields: - FIELD { $$ = g_list_prepend(NULL, $1); } - | fields FIELD { $$ = g_list_prepend($1, $2); } + FIELD { $$ = g_list_append(NULL, $1); } + | fields FIELD { $$ = g_list_append($1, $2); } ; %% -- 2.39.2