From 91be848e33dc3551914515adda8f44c3e1631046 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Sat, 28 Nov 2009 20:37:01 +0000 Subject: [PATCH] Fix output for InsetSpecialChar. These shouldn't be escaped. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32224 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetSpecialChar.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/insets/InsetSpecialChar.cpp b/src/insets/InsetSpecialChar.cpp index 650f307769..469e82c1c6 100644 --- a/src/insets/InsetSpecialChar.cpp +++ b/src/insets/InsetSpecialChar.cpp @@ -302,13 +302,13 @@ docstring InsetSpecialChar::xhtml(XHTMLStream & xs, OutputParams const &) const xs << '.'; break; case LDOTS: - xs << "…"; + xs << XHTMLStream::NextRaw() << "…"; break; case MENU_SEPARATOR: - xs << "⇒"; + xs << XHTMLStream::NextRaw() << "⇒"; break; case SLASH: - xs << "⁄"; + xs << XHTMLStream::NextRaw() << "⁄"; break; case NOBREAKDASH: xs << '-'; -- 2.39.2