From: André Pönitz Date: Thu, 24 Apr 2003 16:59:39 +0000 (+0000) Subject: what's the difference between \\ and \tabularnewline ? X-Git-Tag: 1.6.10~16932 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2dc2d989a930d65b26e14500ea0619f9c0b718d7;p=features.git what's the difference between \\ and \tabularnewline ? git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6846 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/tex2lyx/table.C b/src/tex2lyx/table.C index c39e6584d9..1159e5083e 100644 --- a/src/tex2lyx/table.C +++ b/src/tex2lyx/table.C @@ -241,8 +241,8 @@ void parse_table(Parser & p, ostream & os, unsigned flags) os << TAB; } - //else if (t.cs() == "tabularnewline" || t.cs() == "\\") { - else if (t.cs() == "tabularnewline") { + else if (t.cs() == "tabularnewline" || t.cs() == "\\") { + //else if (t.cs() == "tabularnewline") { // stuff before the line break // and look ahead for stuff after the line break os << HLINE << hlines << HLINE << LINE << read_hlines(p) << HLINE;