From ff4668621b0e2e9b5529aeb69d3d35475ffcb432 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Sun, 22 May 2016 17:32:04 +0200 Subject: [PATCH] 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. --- src/mathed/MathMacro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/MathMacro.cpp b/src/mathed/MathMacro.cpp index e01f7c2134..9fe6e15cc4 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 << " '; return; } -- 2.39.2