[LyX/master] Fix indentation

Juergen Spitzmueller spitz at lyx.org
Sat Aug 15 08:16:32 UTC 2026


commit cc90b59bde5dcf5922630574e32417fd509aee9d
Author: Juergen Spitzmueller <spitz at lyx.org>
Date:   Sat Aug 15 10:15:05 2026 +0200

    Fix indentation
---
 src/mathed/InsetMathHull.cpp | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp
index 7e2bd32939..dd980f5640 100644
--- a/src/mathed/InsetMathHull.cpp
+++ b/src/mathed/InsetMathHull.cpp
@@ -2773,13 +2773,12 @@ void InsetMathHull::xhtml(XMLStream & xs, OutputParams const & op) const
 		if (success) {
 			string const name_space_declaration = "xmlns='http://www.w3.org/1998/Math/MathML'";
 			if (getType() == hullSimple)
-			    xs << xml::StartTag("math", name_space_declaration, true);
+				xs << xml::StartTag("math", name_space_declaration, true);
 			else {
-	            if (!xs.isLastTagCR())
-	                 xs << xml::CR();
-	            xs << xml::StartTag("math", name_space_declaration + " display='block'", true);
-		    }
-
+				if (!xs.isLastTagCR())
+					xs << xml::CR();
+				xs << xml::StartTag("math", name_space_declaration + " display='block'", true);
+			}
 			xs << XMLStream::ESCAPE_NONE
 			   << os.str();
 


More information about the lyx-cvs mailing list