mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-21 17:51:03 +00:00
MathStream: add missing spaces after commas.
This commit is contained in:
parent
3d560f9043
commit
cc2c3e648a
@ -371,14 +371,14 @@ MathMLStream & operator<<(MathMLStream & ms, char const * s)
|
|||||||
|
|
||||||
MathMLStream & operator<<(MathMLStream & ms, char c)
|
MathMLStream & operator<<(MathMLStream & ms, char c)
|
||||||
{
|
{
|
||||||
ms << docstring(1,c);
|
ms << docstring(1, c);
|
||||||
return ms;
|
return ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
MathMLStream & operator<<(MathMLStream & ms, char_type c)
|
MathMLStream & operator<<(MathMLStream & ms, char_type c)
|
||||||
{
|
{
|
||||||
ms << docstring(1,c);
|
ms << docstring(1, c);
|
||||||
return ms;
|
return ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user