Evas textblock: Fixed ignoring of unicode object replacement char.

SVN revision: 51658
This commit is contained in:
Tom Hacohen 2010-08-26 13:04:13 +00:00
parent 26ecd94b4c
commit 2ab7f0f809
1 changed files with 3 additions and 2 deletions

View File

@ -3891,8 +3891,9 @@ evas_object_textblock_text_markup_prepend(Evas_Textblock_Cursor *cur, const char
* fancier in the future, atm it breaks if this char
* is inside <> */
_prepend_text_run(o, s, p);
p += 2; /* it's also advanced later in this loop */
s = NULL;
p += 2; /* it's also advanced later in this loop need +3
* in total*/
s = p + 1; /* One after the end of the replacement char */
}
p++;
}