Jean-Marc Lasgouttes wrote:
The patch is wrong. If you do not add a \n, you should not increase "ret", which counts lines.
thanks, update attached
Other that that, I am not against such a patch. But of course, people who use large tables will not be happy either. It is a bit difficult to please everybody for output format problems.
i think that this is a uniform improvement (even for people who use large tables such as myself)
will commit soon...
Index: tabular.C =================================================================== --- tabular.C (revision 15573) +++ tabular.C (working copy) @@ -2158,8 +2158,7 @@ ret += TeXCellPostamble(os, cell); if (!isLastCellInRow(cell)) { // not last cell in row - os << "&\n"; - ++ret; + os << " & "; } ++cell; }