Fix external function output for MathML.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31986 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-11-14 19:41:22 +00:00
parent 22eab2f2c9
commit 25f429d3e5

View File

@ -124,9 +124,7 @@ void InsetMathExFunc::mathematica(MathematicaStream & os) const
void InsetMathExFunc::mathmlize(MathStream & os) const
{
++os.tab(); os.cr(); os.os() << '<' << name_ << '>';
os << cell(0);
os.cr(); --os.tab(); os.os() << "</" << name_ << '>';
os.os() << "<mi>" << name_ << "</mi>" << "&af;" << cell(0);
}