summaryrefslogtreecommitdiffstats
path: root/src/commentscan.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-04-29 11:00:56 (GMT)
committerGitHub <noreply@github.com>2018-04-29 11:00:56 (GMT)
commit2ea42a5bbc6a6f720502da775a649371bce46d00 (patch)
tree81196529bfe24b0fc4472d6a2c7ad8e3e5e52434 /src/commentscan.l
parent4bf30f6dccf17b893f0e11880fdceff809469e7b (diff)
parent3514452268bf860ac7516185adc0907817ccda97 (diff)
downloadDoxygen-2ea42a5bbc6a6f720502da775a649371bce46d00.zip
Doxygen-2ea42a5bbc6a6f720502da775a649371bce46d00.tar.gz
Doxygen-2ea42a5bbc6a6f720502da775a649371bce46d00.tar.bz2
Merge pull request #654 from albert-github/feature/bug_group_consistency
Consistency for "group" commands
Diffstat (limited to 'src/commentscan.l')
-rw-r--r--src/commentscan.l6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index 07eb28f..de31b2e 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -1503,14 +1503,16 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
if (*yytext=='\n') yyLineNr++;
BEGIN( Comment );
}
+<GroupDocArg1>. { // ignore other stuff
+ }
<GroupDocArg2>"\\"{B}*"\n" { // line continuation
yyLineNr++;
addOutput('\n');
}
-<GroupDocArg2>[^\n\\\*]+ { // title (stored in type)
+<GroupDocArg2>[^\n\*]+ { // title (stored in type)
current->type += yytext;
current->type = current->type.stripWhiteSpace();
- }
+ }
<GroupDocArg2>{DOCNL} {
if ( current->groupDocType==Entry::GROUPDOC_NORMAL &&
current->type.isEmpty()