]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathDelim.cpp
Fix broken Apple speller interface
[features.git] / src / mathed / InsetMathDelim.cpp
index e2bd5ac406ffab0125689d1ad0b8768a332fdf3e..cd4f8aade5f3d8c080df31f8791ce1e28448d7f6 100644 (file)
@@ -182,13 +182,11 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
 void InsetMathDelim::mathmlize(MathMLStream & ms) const
 {
        ms << MTag("mrow")
-          << MTagInline("mo", "form='prefix' fence='true' stretchy='true' symmetric='true'>")
+          << MTagInline("mo", "form='prefix' fence='true' stretchy='true' symmetric='true'")
           << convertDelimToXMLEscape(left_, ms.xmlMode())
           << ETagInline("mo")
-          << "\n"
           << cell(0)
-          << "\n"
-          << MTagInline("mo", "form='postfix' fence='true' stretchy='true' symmetric='true'>")
+          << MTagInline("mo", "form='postfix' fence='true' stretchy='true' symmetric='true'")
           << convertDelimToXMLEscape(right_, ms.xmlMode())
           << ETagInline("mo")
           << ETag("mrow");