]> Dogcows Code - chaz/openbox/blobdiff - openbox/parse.l
all my changes while i was offline.
[chaz/openbox] / openbox / parse.l
index 3762f3359540a994984d8df7e427e59e51a67760..a7cd6c636b2d71b08cc901d798aab63541554278 100644 (file)
@@ -31,7 +31,7 @@ bool ([tT][rR][uU][eE]|[fF][aA][lL][sS][eE]|[yY][eE][sS]|[nN][oO]|[oO][nN]|[oO][
 {bool}       { yylval.bool = (!g_ascii_strcasecmp("true", yytext) ||
                               !g_ascii_strcasecmp("yes", yytext) ||
                               !g_ascii_strcasecmp("on", yytext));
-               return BOOL;
+               return BOOLEAN;
              }
 {identifier} { yylval.identifier = g_strdup(yytext); return IDENTIFIER; }
 [{}()\[\]=,] { yylval.character = *yytext; return *yytext; }
This page took 0.020963 seconds and 4 git commands to generate.