summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2021-01-02 10:30:29 (GMT)
committeralbert-github <albert.tests@gmail.com>2021-01-02 10:30:29 (GMT)
commit4a97d104a07a1796f222bc0763b89396b35e7b7d (patch)
tree1e9e010f4dddd91c5680b6c404cc115d04d57f51 /src
parent75e96744145e9e21f28691e6d0c9b16523050356 (diff)
downloadDoxygen-4a97d104a07a1796f222bc0763b89396b35e7b7d.zip
Doxygen-4a97d104a07a1796f222bc0763b89396b35e7b7d.tar.gz
Doxygen-4a97d104a07a1796f222bc0763b89396b35e7b7d.tar.bz2
issue #8297 fails to parse list of INPUT files
The rule also caught a `\n` at the second position.
Diffstat (limited to 'src')
-rw-r--r--src/configimpl.l2
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++;
}