From bb5c760b37cbc360a46c5cca83178c5b79c3b9b3 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Sat, 11 Jun 2016 00:48:55 -0400 Subject: [PATCH] Fix silly error outputting math sizes. Fixes bug #10129. --- src/mathed/InsetMathSize.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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"); } -- 2.39.2