[LyX/master] MathStream: add missing spaces after commas.
Thibaut Cuvelier
tcuvelier at lyx.org
Mon Nov 4 00:22:33 UTC 2024
commit cc2c3e648a620d70d638dca9a65e8137e04fb5fc
Author: Thibaut Cuvelier <tcuvelier at lyx.org>
Date: Mon Nov 4 01:21:58 2024 +0100
MathStream: add missing spaces after commas.
---
src/mathed/MathStream.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/mathed/MathStream.cpp b/src/mathed/MathStream.cpp
index 6c0bb31940..085c8310d4 100644
--- a/src/mathed/MathStream.cpp
+++ b/src/mathed/MathStream.cpp
@@ -371,14 +371,14 @@ MathMLStream & operator<<(MathMLStream & ms, char const * s)
MathMLStream & operator<<(MathMLStream & ms, char c)
{
- ms << docstring(1,c);
+ ms << docstring(1, c);
return ms;
}
MathMLStream & operator<<(MathMLStream & ms, char_type c)
{
- ms << docstring(1,c);
+ ms << docstring(1, c);
return ms;
}
More information about the lyx-cvs
mailing list