diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-26 13:40:20 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-26 13:40:20 +0000 |
| commit | 8055abe8fb03d6184a35a51a3b86851816660e3f (patch) | |
| tree | 9f54d80cf892dacd8955136646eb03d2db430b8d /plugins | |
| parent | bb103dc006a35e81fdfee803196e4b0a9cc832e8 (diff) | |
was reversing the keylist
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/keyboard/keysrc.yacc | 4 |
1 files 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); } ; %% |
