diff options
-rw-r--r-- | properties.l | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/properties.l b/properties.l index eb6ff81..80240c2 100644 --- a/properties.l +++ b/properties.l @@ -6,7 +6,6 @@ =|: return DIV; ^[ \t]*[a-zA-Z0-9\.]* yylval.value = strdup(yytext); return KEY; -[ \t]* ; . yylval.value = strdup(yytext); return VALUE; %% |