bugfix (too many \\ when writing gridded structures)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3498 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2002-02-07 08:25:55 +00:00
parent 00e2f3f631
commit a64a948cea

View File

@ -700,7 +700,7 @@ void MathGridInset::write(WriteStream & os) const
os << eolString(row);
}
string const s = verboseHLine(rowinfo_[nrows()].lines_);
if (!s.empty())
if (!s.empty() && s != " ")
os << "\\\\" << s;
}