From 308dfa1918472ef86fb844d62e2ddc2d4ef0687e Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Wed, 24 Jul 2024 11:42:30 +0200 Subject: Add a reference --- properties.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/properties.l b/properties.l index 7728a91..ce4ffb8 100644 --- a/properties.l +++ b/properties.l @@ -8,6 +8,6 @@ ^[ \t]*[a-zA-Z0-9\.]* yylval.value = strdup(yytext); return KEY; . yylval.value = strdup(yytext); return VALUE; \n* ; -^[ \t]*/\r?\n ; +^[ \t]*/\r?\n ; /* /\r?\n get the end of line, ref: https://stackoverflow.com/a/56104754 */ %% -- cgit v1.2.3