summaryrefslogtreecommitdiff
path: root/openbox/parse.l
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/parse.l')
-rw-r--r--openbox/parse.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/parse.l b/openbox/parse.l
index 427a55cd..4dcdc2ca 100644
--- a/openbox/parse.l
+++ b/openbox/parse.l
@@ -35,7 +35,7 @@ bool ([tT][rR][uU][eE]|[fF][aA][lL][sS][eE]|[yY][eE][sS]|[nN][oO]|[oO][nN]|[oO][
}
{identifier} { yylval.identifier = g_strdup(yytext); return IDENTIFIER; }
[{}()\[\]=,] { yylval.character = *yytext; return *yytext; }
-\n { yylval.character = *yytext; ++yylineno; return *yytext; }
+\n { yylval.character = *yytext; return *yytext; }
. { return INVALID; }
%%