]> git.lyx.org Git - features.git/commitdiff
what's the difference between \\ and \tabularnewline ?
authorAndré Pönitz <poenitz@gmx.net>
Thu, 24 Apr 2003 16:59:39 +0000 (16:59 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Thu, 24 Apr 2003 16:59:39 +0000 (16:59 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6846 a592a061-630c-0410-9148-cb99ea01b6c8

src/tex2lyx/table.C

index c39e6584d93a630c15b696d222485e9e80de3b91..1159e5083e8c347f3f722a3a5bce3a787e3d30f6 100644 (file)
@@ -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;