From 81228c90fc89e9ca40802b64f9585ee5b9bb8ced Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Wed, 9 Jun 2010 17:02:55 +0000 Subject: [PATCH] Fix bug #6759. Thanks to Vincent. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34637 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/InsetMathComment.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mathed/InsetMathComment.cpp b/src/mathed/InsetMathComment.cpp index ec6d7cccd4..096cf38752 100644 --- a/src/mathed/InsetMathComment.cpp +++ b/src/mathed/InsetMathComment.cpp @@ -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 << ""; + os << ""; } -- 2.39.2