From d530f4a7742add25ccefb9c605a9591bb12e58f3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Wed, 25 Sep 2002 12:49:55 +0000 Subject: [PATCH] trivial fix for #630 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5344 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_arrayinset.C | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mathed/math_arrayinset.C b/src/mathed/math_arrayinset.C index e0cb5bed15..28739cdedc 100644 --- a/src/mathed/math_arrayinset.C +++ b/src/mathed/math_arrayinset.C @@ -89,7 +89,9 @@ void MathArrayInset::write(WriteStream & os) const if (os.fragile()) os << "\\protect"; - os << "\\end{" << name_ << "}\n"; + os << "\\end{" << name_ << "}"; + // adding a \n here is bad if the array is the last item + // in an \eqnarray... } -- 2.39.2