Skip to content

Commit 03e0f54

Browse files
committed
Fixed small issue computing indentation for inline line breaks
1 parent b2fc525 commit 03e0f54

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/doctokenizer.l

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ QCString extractPartAfterNewLine(const QCString &text)
129129
int nl2 = text.findRev("\\ilinebr");
130130
if (nl2!=-1)
131131
{
132+
if (text.at(nl2+8)==' ') nl2++; // skip space after \\ilinebr
132133
return text.mid(nl2+8);
133134
}
134135
return text;

0 commit comments

Comments
 (0)