all repos — openbox @ 87fbee961fcf302ed92cbc2681375a3bea9ce713

openbox fork - make it a bit more like ryudo

this should seriously work
Dana Jansens danakj@orodu.net
commit

87fbee961fcf302ed92cbc2681375a3bea9ce713

parent

089a7320ff201080a8aa1b591eacd9be1f88b5c3

2 files changed, 6 insertions(+), 9 deletions(-)

jump to
M openbox/parse.hopenbox/parse.h

@@ -5,11 +5,11 @@ #include <glib.h>

#include "y.tab.h" typedef enum { - TOKEN_REAL = REAL, - TOKEN_INTEGER = INTEGER, - TOKEN_STRING = STRING, - TOKEN_IDENTIFIER = IDENTIFIER, - TOKEN_BOOL = BOOL, + TOKEN_REAL, + TOKEN_INTEGER, + TOKEN_STRING, + TOKEN_IDENTIFIER, + TOKEN_BOOL, TOKEN_LBRACKET = '(', TOKEN_RBRACKET = ')', TOKEN_LBRACE = '{',
M openbox/parse.lopenbox/parse.l

@@ -1,11 +1,8 @@

%{ -#include <glib.h> -#include "y.tab.h" +#include "parse.h" #ifdef HAVE_STDLIB_H # include <stdlib.h> #endif - -extern void yyerror(char *err); int yylineno = 1; %}