From: Thibaut Cuvelier Date: Sat, 28 Sep 2024 14:40:36 +0000 (+0200) Subject: Fix switch indentation. X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a06528ee2a21b23b798d9972fd2dae1711fc51e8;p=lyx.git Fix switch indentation. --- 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 = "<"; break; - case '>': entity = ">"; break; - case '&': entity = "&"; break; - case ' ': { - ms << from_ascii(" "); - return; - } - default: break; + case '<': entity = "<"; break; + case '>': entity = ">"; break; + case '&': entity = "&"; break; + case ' ': { + ms << from_ascii(" "); + return; + } + default: break; } if (ms.inText()) {