From a64a948cea926aa114aa38a60486faa5e6fd55fb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Thu, 7 Feb 2002 08:25:55 +0000 Subject: [PATCH] bugfix (too many \\ when writing gridded structures) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3498 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_gridinset.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2