From: Richard Heck Date: Sat, 26 Dec 2009 15:08:03 +0000 (+0000) Subject: Output numbers as numbers. X-Git-Tag: 2.0.0~4709 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=27f8da648d18d216de481620c6ff2f4222578f25;p=lyx.git Output numbers as numbers. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32644 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathNumber.cpp b/src/mathed/InsetMathNumber.cpp index 933505a6bf..fdacf0c7bc 100644 --- a/src/mathed/InsetMathNumber.cpp +++ b/src/mathed/InsetMathNumber.cpp @@ -69,7 +69,7 @@ void InsetMathNumber::octave(OctaveStream & os) const void InsetMathNumber::mathmlize(MathStream & os) const { - os << " " << str_ << " "; + os << " " << str_ << " "; }