trivial fix for #630

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5344 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2002-09-25 12:49:55 +00:00
parent 3b112151cc
commit d530f4a774

View File

@ -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...
}