about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-11-14T10·06+0100
committerGitHub <noreply@github.com>2016-11-14T10·06+0100
commitb8d9616af141ff669c94308da3b40f8be824cc83 (patch)
tree58f947476eca68487bc924c420f6a94d5fa2baaa /src
parentdd77f7d5931e500585b6539b52ef5a5f3b549a4e (diff)
parenta5e761dddb6b090b233aebe29dc30ebfbc058dab (diff)
Merge pull request #1129 from layus/fix-comments
Fix comments parsing
Diffstat (limited to 'src')
-rw-r--r--src/libexpr/lexer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/lexer.l b/src/libexpr/lexer.l
index f3660ab43723..3ac7ce723cb3 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];