]> git.lyx.org Git - features.git/commitdiff
Fix delimiters.
authorRichard Heck <rgheck@comcast.net>
Sat, 14 Nov 2009 20:18:32 +0000 (20:18 +0000)
committerRichard Heck <rgheck@comcast.net>
Sat, 14 Nov 2009 20:18:32 +0000 (20:18 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31988 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathDelim.cpp

index 4c873f15e8ea1f1fd9b923ee13d9e84a975efea3..12688f1f58443327d147cce1dd3a7eb49063c1e5 100644 (file)
@@ -163,8 +163,8 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
 
 void InsetMathDelim::mathmlize(MathStream & os) const
 {
-       os << "<fenced open=\"" << left_ << "\" close=\""
-               << right_ << "\">" << cell(0) << "</fenced>";
+       os << "<mfenced open=\"" << left_ << "\" close=\""
+               << right_ << "\">" << cell(0) << "</mfenced>";
 }