]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_amsarrayinset.C
Fix reading of math macros
[lyx.git] / src / mathed / math_amsarrayinset.C
index 914a463db86c37a51c7207c9b0b0cd117fe87d85..0f13ce35115fa96a528a06197c1bd206dd50bab5 100644 (file)
@@ -82,16 +82,15 @@ void MathAMSArrayInset::draw(MathPainterInfo & pi, int x, int y) const
 
 void MathAMSArrayInset::write(WriteStream & os) const
 {
-       os << "\\begin{" << name_ << "}";
+       os << "\\begin{" << name_ << '}';
        MathGridInset::write(os);
-       os << "\\end{" << name_ << "}";
+       os << "\\end{" << name_ << '}';
 }
 
 
 void MathAMSArrayInset::normalize(NormalStream & os) const
 {
-       os << "[" << name_ << " ";
+       os << '[' << name_ << ' ';
        MathGridInset::normalize(os);
-       os << "]";
+       os << ']';
 }
-