From eda3219662f2c7a7f75f32630c2a68e354801c68 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Wed, 9 Sep 2020 10:35:35 +0200 Subject: [PATCH] Remove unneeded space for \nolimits --- src/mathed/InsetMath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/InsetMath.cpp b/src/mathed/InsetMath.cpp index bddd82fe7a..1adeec10a8 100644 --- a/src/mathed/InsetMath.cpp +++ b/src/mathed/InsetMath.cpp @@ -75,7 +75,7 @@ void InsetMath::writeLimits(WriteStream & os) const os << "\\limits"; os.pendingSpace(true); } else if (limits() == NO_LIMITS) { - os << "\\nolimits "; + os << "\\nolimits"; os.pendingSpace(true); } }