diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-11-14 11:06:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-14 11:06:30 +0100 |
commit | b8d9616af141ff669c94308da3b40f8be824cc83 (patch) | |
tree | 58f947476eca68487bc924c420f6a94d5fa2baaa /src | |
parent | dd77f7d5931e500585b6539b52ef5a5f3b549a4e (diff) | |
parent | a5e761dddb6b090b233aebe29dc30ebfbc058dab (diff) |
Merge pull request #1129 from layus/fix-comments
Fix comments parsing
Diffstat (limited to 'src')
-rw-r--r-- | src/libexpr/lexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/lexer.l b/src/libexpr/lexer.l index f3660ab43..3ac7ce723 100644 --- a/src/libexpr/lexer.l +++ b/src/libexpr/lexer.l @@ -189,7 +189,7 @@ or { return OR_KW; } [ \t\r\n]+ /* eat up whitespace */ \#[^\r\n]* /* single-line comments */ -\/\*([^*]|\*[^\/])*\*\/ /* long comments */ +\/\*([^*]|\*+[^*/])*\*+\/ /* long comments */ . return yytext[0]; |