what's the difference between \\ and \tabularnewline ?

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6846 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2003-04-24 16:59:39 +00:00
parent 5b4633d0d1
commit 2dc2d989a9

View 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;