From: Richard Heck Date: Sat, 14 Nov 2009 19:41:22 +0000 (+0000) Subject: Fix external function output for MathML. X-Git-Tag: 2.0.0~5147 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=25f429d3e5984e53ea90718868a545dfe5df3180;p=features.git Fix external function output for MathML. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31986 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathExFunc.cpp b/src/mathed/InsetMathExFunc.cpp index 3398e9049a..5b79f60fa3 100644 --- a/src/mathed/InsetMathExFunc.cpp +++ b/src/mathed/InsetMathExFunc.cpp @@ -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() << "'; + os.os() << "" << name_ << "" << "⁡" << cell(0); }