]> Dogcows Code - chaz/openbox/blobdiff - util/epist/epist.l
include the config.h header
[chaz/openbox] / util / epist / epist.l
index 55dc8d615f757d347ebf5d80e639997e1768eb56..c3db54b8120cea77867de794fc58f791ffef1257 100644 (file)
@@ -1,4 +1,8 @@
 %{
+#ifdef    HAVE_CONFIG_H
+#  include "../../config.h"
+#endif // HAVE_CONFIG_H
+
 #include <stdio.h>
 #include <string.h>
 #include "yacc_parser.hh"
@@ -27,8 +31,12 @@ 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;
This page took 0.020649 seconds and 4 git commands to generate.