From: Richard Heck Date: Mon, 30 Nov 2009 23:13:06 +0000 (+0000) Subject: Don't escape these. X-Git-Tag: 2.0.0~4969 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=55bfa587c6274d502787262566c116ed8f2b9567;hp=a2de0334057ab1a198350ac8bf7c18f963b4dcdb;p=lyx.git Don't escape these. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32264 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index cf7c7145d4..8b3a72328d 100644 --- a/src/Paragraph.cpp +++ b/src/Paragraph.cpp @@ -2446,7 +2446,7 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf, } else str += c; - xs << str; + xs << XHTMLStream::NextRaw() << str; } else xs << c; }