From 673858b182b56c0b4c1d725683db56303694e6ce Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Mon, 14 Dec 2009 16:45:11 +0000 Subject: [PATCH] These add extra whitespace where we don't want it. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32529 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/output_xhtml.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/output_xhtml.cpp b/src/output_xhtml.cpp index 3fbc33907a..963bd490ca 100644 --- a/src/output_xhtml.cpp +++ b/src/output_xhtml.cpp @@ -381,7 +381,6 @@ XHTMLStream & XHTMLStream::operator<<(EndTag const & etag) if (etag.tag_ == tag_stack_.back().tag_) { // output it... os_ << etag.asEndTag(); - cr(); // ...and forget about it tag_stack_.pop_back(); return *this; @@ -424,14 +423,12 @@ XHTMLStream & XHTMLStream::operator<<(EndTag const & etag) TagStack fontstack; while (curtag.tag_ != etag.tag_) { os_ << curtag.asEndTag(); - cr(); fontstack.push_back(curtag); tag_stack_.pop_back(); curtag = tag_stack_.back(); } // now close our tag... os_ << etag.asEndTag(); - cr(); tag_stack_.pop_back(); // ...and restore the other tags. -- 2.39.2