From: Richard Heck Date: Sat, 21 Nov 2009 23:15:52 +0000 (+0000) Subject: Don't escape the deferred stuff. X-Git-Tag: 2.0.0~5059 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=344859e4dfa6afb478129613088c6412f3944770;p=features.git Don't escape the deferred stuff. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32135 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/output_xhtml.cpp b/src/output_xhtml.cpp index ac9c3c052c..f4a0612481 100644 --- a/src/output_xhtml.cpp +++ b/src/output_xhtml.cpp @@ -523,7 +523,7 @@ ParagraphList::const_iterator makeParagraphs(Buffer const & buf, xs.cr(); } if (!deferred.empty()) { - xs << deferred; + xs << XHTMLStream::NextRaw() << deferred; xs.cr(); } }