]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.cpp
Initialize nextraw_. The first character of the outputted html file was represented...
[lyx.git] / src / output_xhtml.cpp
index ac9c3c052cf56de580a51f8e5371150c0433fa0a..376de29c25c0eac3e601f9e5a51d6e84e405daa1 100644 (file)
@@ -123,7 +123,7 @@ docstring CompTag::asTag() const
 ////////////////////////////////////////////////////////////////
 
 XHTMLStream::XHTMLStream(odocstream & os) 
-               :os_(os)
+               : os_(os), nextraw_(false)
 {}
 
 
@@ -523,7 +523,7 @@ ParagraphList::const_iterator makeParagraphs(Buffer const & buf,
                        xs.cr();
                }
                if (!deferred.empty()) {
-                       xs << deferred;
+                       xs << XHTMLStream::NextRaw() << deferred;
                        xs.cr();
                }
        }