]> git.lyx.org Git - lyx.git/commitdiff
Paragraph::latexInset(): return early for the NEWLINE_CODE special case. This put...
authorAbdelrazak Younes <younes@lyx.org>
Mon, 26 Nov 2007 19:52:57 +0000 (19:52 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Mon, 26 Nov 2007 19:52:57 +0000 (19:52 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21801 a592a061-630c-0410-9148-cb99ea01b6c8

src/Paragraph.cpp

index e0afc387287a49338842a7c00cdeec33d0a553ae..cc0c01c2467dc8947484d62e4e6b9b786f7fcf03 100644 (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) {