commit de19f69402da52baf863524209c82ef7e27ca3af
Author: Richard Heck <[email protected]>
Date: Sat Jun 11 00:48:55 2016 -0400
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 dc79652..fc7c7ba 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.21x b/status.21x
index cb4d43f..38ba3bb 100644
--- a/status.21x
+++ b/status.21x
@@ -191,6 +191,7 @@ What's new
* LYXHTML
+- Fix output of math sizes.
* TEX2LYX