X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Fepist.l;h=c3db54b8120cea77867de794fc58f791ffef1257;hb=b04f5a85d5dd3660207318403cf9e620b48dcc76;hp=146d4b0eb71d1796bb591e0b8a7bf53b27fe9022;hpb=97e86c912ee33e9e75e68f9c193d78879f91d542;p=chaz%2Fopenbox diff --git a/util/epist/epist.l b/util/epist/epist.l index 146d4b0e..c3db54b8 100644 --- a/util/epist/epist.l +++ b/util/epist/epist.l @@ -1,4 +1,8 @@ %{ +#ifdef HAVE_CONFIG_H +# include "../../config.h" +#endif // HAVE_CONFIG_H + #include #include #include "yacc_parser.hh" @@ -13,12 +17,28 @@ extern YYSTYPE yylval; \} return EBRACE; ; return SEMICOLON; - return DASH; +Options | +options return OPTIONS; Mod1 | +mod1 | Mod2 | +mod2 | Mod3 | +mod3 | Mod4 | +mod4 | Control | +control | +shift | Shift yylval = (int) strdup(yytext); return BINDING; +on | +On | +true | +True yylval = (int) strdup(yytext); return TRUE; +Off | +off | +false | +False yylval = (int) strdup(yytext); return FALSE; [0-9]+ yylval = (int) strdup(yytext); return NUMBER; \".+\" yylval = (int) strdup(yytext); return QUOTES; [a-zA-Z_0-9]+ yylval = (int) strdup(yytext); return WORD;