]> Dogcows Code - chaz/openbox/blobdiff - util/epist/epist.l
dont break the focused window iterator
[chaz/openbox] / util / epist / epist.l
index 146d4b0eb71d1796bb591e0b8a7bf53b27fe9022..e545054a93133506fdc77c1ebd7a52b042126da0 100644 (file)
@@ -13,12 +13,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;
This page took 0.02267 seconds and 4 git commands to generate.