]> Dogcows Code - chaz/openbox/blobdiff - plugins/keyboard/keysrc.yacc
use the last event timestamp when focusing the focus_backup
[chaz/openbox] / plugins / keyboard / keysrc.yacc
index c1f977e829acca0d0772a8e7ec00ed87e6aa7daa..3e4eeff6900a79d3a018e7e561676467fe3b55f5 100644 (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); }
   ;
 
 %%
This page took 0.025781 seconds and 4 git commands to generate.