mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 13:40:19 +00:00
Fix bug #9319: Problems with space inside math and textrm.
This commit is contained in:
parent
77b0452a30
commit
d1858b89d0
@ -273,7 +273,7 @@ void InsetMathSpace::write(WriteStream & os) const
|
|||||||
os << space_info[space_].name.c_str();
|
os << space_info[space_].name.c_str();
|
||||||
if (space_info[space_].custom)
|
if (space_info[space_].custom)
|
||||||
os << '{' << length_.asLatexString().c_str() << '}';
|
os << '{' << length_.asLatexString().c_str() << '}';
|
||||||
else if (space_info[space_].escape && space_info[space_].name != " ")
|
else if (space_info[space_].escape && space_info[space_].name.length() > 1)
|
||||||
os.pendingSpace(true);
|
os.pendingSpace(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user