From: Abdelrazak Younes Date: Mon, 26 Nov 2007 19:52:57 +0000 (+0000) Subject: Paragraph::latexInset(): return early for the NEWLINE_CODE special case. This put... X-Git-Tag: 1.6.10~7190 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f844782cd1a37605204160f14baa535a5de20748;p=lyx.git Paragraph::latexInset(): return early for the NEWLINE_CODE special case. This put back the code in line with what was there in revision 17939. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21801 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index e0afc38728..cc0c01c246 100644 --- a/src/Paragraph.cpp +++ b/src/Paragraph.cpp @@ -706,6 +706,7 @@ void Paragraph::Private::latexInset(Buffer const & buf, texrow.newline(); texrow.start(owner_->id(), i + 1); column = 0; + return; } if (owner_->lookupChange(i).type == Change::DELETED) {