]> git.lyx.org Git - features.git/commitdiff
Fix output for InsetSpecialChar. These shouldn't be escaped.
authorRichard Heck <rgheck@comcast.net>
Sat, 28 Nov 2009 20:37:01 +0000 (20:37 +0000)
committerRichard Heck <rgheck@comcast.net>
Sat, 28 Nov 2009 20:37:01 +0000 (20:37 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32224 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetSpecialChar.cpp

index 650f307769f2bfef28bb025645870b86bec0a269..469e82c1c6712bbcb69cb0adaac560add98b9336 100644 (file)
@@ -302,13 +302,13 @@ docstring InsetSpecialChar::xhtml(XHTMLStream & xs, OutputParams const &) const
                xs << '.';
                break;
        case LDOTS:
-               xs << "&hellip;";
+               xs << XHTMLStream::NextRaw() << "&hellip;";
                break;
        case MENU_SEPARATOR:
-               xs << "&rArr;";
+               xs << XHTMLStream::NextRaw() << "&rArr;";
                break;
        case SLASH:
-               xs << "&frasl;";
+               xs << XHTMLStream::NextRaw() << "&frasl;";
                break;
        case NOBREAKDASH:
                xs << '-';