From 6967440797893231c18a740a233a912292879f49 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 19 Nov 2009 21:04:40 +0000 Subject: [PATCH] Bug fix for font output. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32093 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/output_xhtml.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/output_xhtml.cpp b/src/output_xhtml.cpp index b01407a62f..1232e79a84 100644 --- a/src/output_xhtml.cpp +++ b/src/output_xhtml.cpp @@ -336,6 +336,8 @@ XHTMLStream & XHTMLStream::operator<<(EndTag const & etag) } // now close our tag... os_ << etag.asEndTag(); + tag_stack_.pop_back(); + // ...and restore the other tags. rit = fontstack.rbegin(); ren = fontstack.rend();