[LyX/master] Remove unneeded space for \nolimits
Jean-Marc Lasgouttes
lasgouttes at lyx.org
Wed Sep 9 08:09:29 UTC 2020
commit eda3219662f2c7a7f75f32630c2a68e354801c68
Author: Jean-Marc Lasgouttes <lasgouttes at lyx.org>
Date: Wed Sep 9 10:35:35 2020 +0200
Remove unneeded space for \nolimits
---
src/mathed/InsetMath.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/mathed/InsetMath.cpp b/src/mathed/InsetMath.cpp
index bddd82f..1adeec1 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);
}
}
More information about the lyx-cvs
mailing list