aboutsummaryrefslogtreecommitdiff
path: root/properties.l
diff options
context:
space:
mode:
Diffstat (limited to 'properties.l')
-rw-r--r--properties.l12
1 files changed, 6 insertions, 6 deletions
diff --git a/properties.l b/properties.l
index 4e6f04b..4e8f1d2 100644
--- a/properties.l
+++ b/properties.l
@@ -4,11 +4,11 @@
%%
-=|: return DIV;
-^[ \t]*[a-zA-Z0-9\.]*[ \t]* yylval.value = strdup(yytext); return KEY;
-\n ; /* Ignores empty lines with a single newline */
-^[ \t]*#.* ; /* Ignores comments */
-^[ \t]*/\r?\n ; /* /\r?\n get the end of line, ref: https://stackoverflow.com/a/56104754 */
-. yylval.value = strdup(yytext); return VALUE;
+=|: return DIV;
+^[ \t]*[a-zA-Z0-9\.]*[ \t]* yylval.value = strdup(yytext); return KEY;
+\n ; /* Ignores empty lines with a single newline */
+^[ \t]*#.* ; /* Ignores comments */
+^[ \t]*/\r?\n ; /* /\r?\n get the end of line, ref: https://stackoverflow.com/a/56104754 */
+. yylval.value = strdup(yytext); return VALUE;
%%