diff options
Diffstat (limited to 'src/build.l')
-rw-r--r-- | src/build.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build.l b/src/build.l index 723991b..2b834a2 100644 --- a/src/build.l +++ b/src/build.l | |||
@@ -77,12 +77,12 @@ std::string strbuf; | |||
77 | 77 | ||
78 | "#".* /* single line comment */ | 78 | "#".* /* single line comment */ |
79 | 79 | ||
80 | [^ \t\r\n\'\":=,/][^ \t\r\n\'\":=,]* { | 80 | [^ \t\r\n\'\":+=,/][^ \t\r\n\'\":+=,]* { |
81 | yylval->strval = stringdup( yytext ); | 81 | yylval->strval = stringdup( yytext ); |
82 | return STRING; | 82 | return STRING; |
83 | } | 83 | } |
84 | 84 | ||
85 | [^ \t\r\n\'\":=,/][^ \t\r\n\'\"=,]+[^ \t\r\n\'\":=,] { | 85 | [^ \t\r\n\'\":+=,/][^ \t\r\n\'\"+=,]+[^ \t\r\n\'\":+=,] { |
86 | yylval->strval = stringdup( yytext ); | 86 | yylval->strval = stringdup( yytext ); |
87 | return STRING; | 87 | return STRING; |
88 | } | 88 | } |