From: Richard Heck Date: Sat, 14 Nov 2009 19:52:06 +0000 (+0000) Subject: Whoops. Forgot to fix this. X-Git-Tag: 2.0.0~5146 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=177ff11cfb0cb536891973510b48538b795149d7;p=features.git Whoops. Forgot to fix this. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31987 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathExFunc.cpp b/src/mathed/InsetMathExFunc.cpp index 5b79f60fa3..e4479275d0 100644 --- a/src/mathed/InsetMathExFunc.cpp +++ b/src/mathed/InsetMathExFunc.cpp @@ -124,7 +124,8 @@ void InsetMathExFunc::mathematica(MathematicaStream & os) const void InsetMathExFunc::mathmlize(MathStream & os) const { - os.os() << "" << name_ << "" << "⁡" << cell(0); + os.os() << "" << name_ << "" << "⁡"; + os << cell(0); }