git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10202 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2005-07-15 10:12:29 +00:00
parent 017bd21202
commit 83c44ca6e7

View File

@ -68,7 +68,7 @@ void MathInset::drawT(TextPainter &, int, int) const
void MathInset::write(WriteStream & os) const
{
string const s = name();
os << '\\' << s.c_str();S
os << '\\' << s.c_str();
// We need an extra ' ' unless this is a single-char-non-ASCII name
// or anything non-ASCII follows
if (s.size() != 1 || isalpha(s[0]))