commit ff4668621b0e2e9b5529aeb69d3d35475ffcb432
Author: Georg Baum <b...@lyx.org>
Date:   Sun May 22 17:32:04 2016 +0200

    Fxy typo in XHTML output (bug #10124)
    
    There was a simple typo that did ouput the slash before the closing tag
    instead of inside the closing tag.

diff --git a/src/mathed/MathMacro.cpp b/src/mathed/MathMacro.cpp
index e01f7c2..9fe6e15 100644
--- a/src/mathed/MathMacro.cpp
+++ b/src/mathed/MathMacro.cpp
@@ -1008,7 +1008,7 @@ void MathMacro::mathmlize(MathStream & os) const
                docstring const xmlname = d->macro_->xmlname();
                if (!xmlname.empty()) {
                        char const * type = d->macro_->MathMLtype();
-                       os << '<' << type << "> " << xmlname << " /<"
+                       os << '<' << type << "> " << xmlname << " </"
                           << type << '>';
                        return;
                }

Reply via email to