diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-01-02 14:57:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-02 14:57:20 (GMT) |
commit | 3fbc3f9ed4c43ed890110df099df897e036ae1e2 (patch) | |
tree | 2393823ca0c497dcbae3f6a1455c53a76657fb27 /src | |
parent | 1b54e3272da36f17c8d82fda9ee6e8223c9fb201 (diff) | |
parent | 4a97d104a07a1796f222bc0763b89396b35e7b7d (diff) | |
download | Doxygen-3fbc3f9ed4c43ed890110df099df897e036ae1e2.zip Doxygen-3fbc3f9ed4c43ed890110df099df897e036ae1e2.tar.gz Doxygen-3fbc3f9ed4c43ed890110df099df897e036ae1e2.tar.bz2 |
Merge pull request #8298 from albert-github/feature/issue_8297
issue #8297 fails to parse list of INPUT files
Diffstat (limited to 'src')
-rw-r--r-- | src/configimpl.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configimpl.l b/src/configimpl.l index 17e56b3..7f73ec0 100644 --- a/src/configimpl.l +++ b/src/configimpl.l @@ -873,7 +873,7 @@ static void readIncludeFile(const char *incName) g_config->appendUserComment(yytext); g_yyLineNr++; } -<Start>"#"[^#].*"\n" { /* normal comment */ +<Start>"#".*"\n" { /* normal comment */ g_yyLineNr++; } |