diff options
Diffstat (limited to 'properties.l')
-rw-r--r-- | properties.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/properties.l b/properties.l index 50acbd7..b1b8617 100644 --- a/properties.l +++ b/properties.l @@ -5,7 +5,7 @@ %% -=|: return DIV; +=|: yylval.value = strdup(yytext); return DIV; ^[ \t]*[a-zA-Z0-9\.]*[ \t]* yylval.value = strdup(trim(yytext)); return KEY; \n ; /* Ignores empty lines with a single newline */ ^[ \t]*#.* ; /* Ignores comments */ |