long standing patch/bug for \r systems text conversion to markup.

http://trac.enlightenment.org/e/ticket/293



SVN revision: 75402
This commit is contained in:
Carsten Haitzler 2012-08-18 07:02:16 +00:00
parent 65dd623ac1
commit 5a27065b81
1 changed files with 1 additions and 1 deletions

View File

@ -5459,7 +5459,7 @@ evas_textblock_text_utf8_to_markup(const Evas_Object *obj, const char *text)
eina_strbuf_append(sbuf, "<ps/>");
else if (ch == _REPLACEMENT_CHAR)
eina_strbuf_append(sbuf, "&#xfffc;");
else
else if (ch != '\r')
{
eina_strbuf_append_length(sbuf, text + pos, pos2 - pos);
}