]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSymbol.cpp
InsetMathHull.cpp: whitespace
[lyx.git] / src / mathed / InsetMathSymbol.cpp
index 7fff4a3e72031a18971e6f65bc3f1fd763289455..b152388ee075d963299100fdc8ba5d3613ed0a04 100644 (file)
@@ -206,9 +206,8 @@ void InsetMathSymbol::octave(OctaveStream & os) const
 
 void InsetMathSymbol::write(WriteStream & os) const
 {
-       bool brace = ensureMath(os);
+       MathEnsurer ensurer(os);
        os << '\\' << name();
-       os.pendingBrace(brace);
 
        // $,#, etc. In theory the restriction based on catcodes, but then
        // we do not handle catcodes very well, let alone cat code changes,