]> git.lyx.org Git - features.git/commitdiff
have row on 1 line when exporting to latex
authorEdwin Leuven <e.leuven@gmail.com>
Fri, 27 Oct 2006 09:54:56 +0000 (09:54 +0000)
committerEdwin Leuven <e.leuven@gmail.com>
Fri, 27 Oct 2006 09:54:56 +0000 (09:54 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15576 a592a061-630c-0410-9148-cb99ea01b6c8

src/tabular.C

index f5650493fd3de1394667da3a51e6f88ca033609a..bb185489b9061316eee9fae285bd4f5c82a06dcd 100644 (file)
@@ -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;
        }