commit a06528ee2a21b23b798d9972fd2dae1711fc51e8
Author: Thibaut Cuvelier <tcuvel...@lyx.org>
Date:   Sat Sep 28 16:40:36 2024 +0200

    Fix switch indentation.
---
 src/mathed/InsetMathChar.cpp | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/mathed/InsetMathChar.cpp b/src/mathed/InsetMathChar.cpp
index 82d0b63f1e..ebc1644af5 100644
--- a/src/mathed/InsetMathChar.cpp
+++ b/src/mathed/InsetMathChar.cpp
@@ -236,14 +236,14 @@ void InsetMathChar::mathmlize(MathMLStream & ms) const
 {
        std::string entity;
        switch (char_) {
-               case '<': entity = "&lt;"; break;
-               case '>': entity = "&gt;"; break;
-               case '&': entity = "&amp;"; break;
-               case ' ': {
-                       ms << from_ascii("&#0160;");
-                       return;
-               }
-               default: break;
+       case '<': entity = "&lt;"; break;
+       case '>': entity = "&gt;"; break;
+       case '&': entity = "&amp;"; break;
+       case ' ': {
+               ms << from_ascii("&#0160;");
+               return;
+       }
+       default: break;
        }
 
        if (ms.inText()) {
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to