all repos — openbox @ 8055abe8fb03d6184a35a51a3b86851816660e3f

openbox fork - make it a bit more like ryudo

was reversing the keylist
Dana Jansens danakj@orodu.net
commit

8055abe8fb03d6184a35a51a3b86851816660e3f

parent

bb103dc006a35e81fdfee803196e4b0a9cc832e8

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M plugins/keyboard/keysrc.yaccplugins/keyboard/keysrc.yacc

@@ -39,8 +39,8 @@ | config fields FIELD STRING '\n' { addbinding($2, $3, $4, 0); }

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