]> git.lyx.org Git - features.git/commitdiff
Don't double-escape things.
authorRichard Heck <rgheck@comcast.net>
Thu, 10 Dec 2009 20:19:41 +0000 (20:19 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 10 Dec 2009 20:19:41 +0000 (20:19 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32464 a592a061-630c-0410-9148-cb99ea01b6c8

src/Paragraph.cpp

index 285fc4b273bfb35c1881534118a5c0461fe4476c..2d8f168e13c70f5afd7df9415e04e025e6d62b73 100644 (file)
@@ -2312,7 +2312,7 @@ pos_type Paragraph::firstWordLyXHTML(XHTMLStream & xs, OutputParams const & runp
                        char_type c = d->text_[i];
                        if (c == ' ')
                                break;
-                       xs << html::escapeChar(c);
+                       xs << c;
                }
        }
        return i;