From: Richard Heck Date: Sat, 11 Jun 2016 04:48:55 +0000 (-0400) Subject: Fix silly error outputting math sizes. Fixes bug #10129. X-Git-Tag: 2.2.1~166 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bb9e0e122a7277070651887630665dcb07671147;p=features.git Fix silly error outputting math sizes. Fixes bug #10129. (cherry picked from commit bb5c760b37cbc360a46c5cca83178c5b79c3b9b3) --- diff --git a/src/mathed/InsetMathSize.cpp b/src/mathed/InsetMathSize.cpp index dc79652fad..fc7c7bae9f 100644 --- a/src/mathed/InsetMathSize.cpp +++ b/src/mathed/InsetMathSize.cpp @@ -83,8 +83,7 @@ void InsetMathSize::mathmlize(MathStream & ms) const stringstream attrs; attrs << "displaystyle='" << (dispstyle ? "true" : "false") << "' scriptlevel='" << scriptlevel << "'"; - ms << MTag("mstyle", attrs.str()) << ">" - << cell(0) << ETag("mstyle"); + ms << MTag("mstyle", attrs.str()) << cell(0) << ETag("mstyle"); } diff --git a/status.22x b/status.22x index 737b7850b1..e68ecf9aef 100644 --- a/status.22x +++ b/status.22x @@ -72,6 +72,8 @@ What's new * LYXHTML +- Fix output of math sizes (bug 10129). + * TEX2LYX