was reversing the keylist
This commit is contained in:
parent
bb103dc006
commit
8055abe8fb
1 changed files with 2 additions and 2 deletions
|
@ -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); }
|
||||
;
|
||||
|
||||
%%
|
||||
|
|
Loading…
Reference in a new issue