From 0d0a1c6457035d2c1cf949e146175cf244cd4989 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 10 Dec 2009 20:19:41 +0000 Subject: [PATCH] Don't double-escape things. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32464 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Paragraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2