diff options
Diffstat (limited to 'openbox/parse.l')
| -rw-r--r-- | openbox/parse.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/parse.l b/openbox/parse.l index 3762f335..a7cd6c63 100644 --- a/openbox/parse.l +++ b/openbox/parse.l @@ -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; } |
