From: Richard Heck Date: Thu, 10 Dec 2009 20:19:41 +0000 (+0000) Subject: Don't double-escape things. X-Git-Tag: 2.0.0~4855 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0d0a1c6457035d2c1cf949e146175cf244cd4989;p=features.git Don't double-escape things. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32464 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index 285fc4b273..2d8f168e13 100644 --- a/src/Paragraph.cpp +++ b/src/Paragraph.cpp @@ -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;