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
This commit is contained in:
Abdelrazak Younes 2007-11-26 19:52:57 +00:00
parent 3f30fe7421
commit f844782cd1

View File

@ -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) {