summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-24 18:25:10 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-12-24 18:25:10 (GMT)
commite15498354fd4782424bff4b10f27e1fa7cff5e27 (patch)
tree08e56dd73c5c0473b6a2d02d3332f9d0f4701b2a
parentae4e0e0e55bbadc6621ba25a095eb90458ae818e (diff)
parent03e0f54b86285e0e6eba07cbdbf407a0522b517d (diff)
downloadDoxygen-e15498354fd4782424bff4b10f27e1fa7cff5e27.zip
Doxygen-e15498354fd4782424bff4b10f27e1fa7cff5e27.tar.gz
Doxygen-e15498354fd4782424bff4b10f27e1fa7cff5e27.tar.bz2
Merge branch 'albert-github-feature/bug_param_ilinebr'
-rw-r--r--src/doctokenizer.l3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l
index 2f768e6..330db00 100644
--- a/src/doctokenizer.l
+++ b/src/doctokenizer.l
@@ -129,6 +129,7 @@ QCString extractPartAfterNewLine(const QCString &text)
int nl2 = text.findRev("\\ilinebr");
if (nl2!=-1)
{
+ if (text.at(nl2+8)==' ') nl2++; // skip space after \\ilinebr
return text.mid(nl2+8);
}
return text;
@@ -810,7 +811,7 @@ RCSID "$"("Author"|"Date"|"Header"|"Id"|"Locker"|"Log"|"Name"|"RCSfile"|"Revisio
}
lineCount(yytext,yyleng);
}
-<St_Para>({BLANK}*\n)+{BLANK}*\n{BLANK}* {
+<St_Para>({BLANK}*(\n|"\\ilinebr"))+{BLANK}*(\n|"\\ilinebr"){BLANK}* {
lineCount(yytext,yyleng);
if (g_insidePre)
{