Fix bug #6759. Thanks to Vincent.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34637 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-06-09 17:02:55 +00:00
parent cd78e02a24
commit 81228c90fc

View File

@ -80,13 +80,13 @@ void InsetMathComment::maple(MapleStream & os) const
void InsetMathComment::mathmlize(MathStream & os) const
{
os << MTag("comment") << cell(0) << cell(1) << ETag("comment");
os << MTag("comment") << cell(0) << ETag("comment");
}
void InsetMathComment::htmlize(HtmlStream & os) const
{
os << "<!-- " << cell(0) << cell(1) << " -->";
os << "<!-- " << cell(0) << " -->";
}