From 91d32deed914fcc3b4250635efb1f8b7fb02cbec Mon Sep 17 00:00:00 2001 From: Edwin Leuven Date: Fri, 27 Oct 2006 09:54:56 +0000 Subject: [PATCH] have row on 1 line when exporting to latex git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15576 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/tabular.C | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tabular.C b/src/tabular.C index f5650493fd..bb185489b9 100644 --- a/src/tabular.C +++ b/src/tabular.C @@ -2158,8 +2158,7 @@ int LyXTabular::TeXRow(odocstream & os, row_type i, Buffer const & buf, ret += TeXCellPostamble(os, cell); if (!isLastCellInRow(cell)) { // not last cell in row - os << "&\n"; - ++ret; + os << " & "; } ++cell; } -- 2.39.2