diff options
-rw-r--r-- | src/doctokenizer.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l index 92b2dc6..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; |