diff options
author | 2024-07-24 11:35:55 +0200 | |
---|---|---|
committer | 2024-07-24 11:35:55 +0200 | |
commit | 9f731dbe32b66533839c7fb8e6c3518429106e5b (patch) | |
tree | ec4b12c938afa58616d2c0d446ae8d746c5a26b2 /properties.l | |
parent | 38a734ec35edbb466d2aad0ee72f34ff6d2e562d (diff) | |
download | properties-9f731dbe32b66533839c7fb8e6c3518429106e5b.tar.gz properties-9f731dbe32b66533839c7fb8e6c3518429106e5b.zip |
Ignore newline lines
In the properties file you can separeta blocks of properties using
the newline character.
Diffstat (limited to 'properties.l')
-rw-r--r-- | properties.l | 1 |
1 files changed, 1 insertions, 0 deletions
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* ; %% |