From: André Pönitz Date: Thu, 7 Feb 2002 08:25:55 +0000 (+0000) Subject: bugfix (too many \\ when writing gridded structures) X-Git-Tag: 1.6.10~19897 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a64a948cea926aa114aa38a60486faa5e6fd55fb;p=features.git bugfix (too many \\ when writing gridded structures) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3498 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/math_gridinset.C b/src/mathed/math_gridinset.C index f7c357f220..91613a49b1 100644 --- a/src/mathed/math_gridinset.C +++ b/src/mathed/math_gridinset.C @@ -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; }