Don't double-escape things.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32464 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-12-10 20:19:41 +00:00
parent f162067a61
commit 0d0a1c6457

View 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;