was reversing the keylist

This commit is contained in:
Dana Jansens 2003-03-26 13:40:20 +00:00
parent bb103dc006
commit 8055abe8fb

View file

@ -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); }
;
%%