From 9f731dbe32b66533839c7fb8e6c3518429106e5b Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Wed, 24 Jul 2024 11:35:55 +0200 Subject: Ignore newline lines In the properties file you can separeta blocks of properties using the newline character. --- properties.l | 1 + 1 file changed, 1 insertion(+) diff --git a/properties.l b/properties.l index 80240c2..4103d16 100644 --- a/properties.l +++ b/properties.l @@ -7,5 +7,6 @@ =|: return DIV; ^[ \t]*[a-zA-Z0-9\.]* yylval.value = strdup(yytext); return KEY; . yylval.value = strdup(yytext); return VALUE; +\n* ; %% -- cgit v1.2.3