evas textblock: support ZWJ, ZWNJ, LRM, RLM in escaped form

Summary:
The patch supports the following escaped string from Evas Textblock.
These unicodes are frequently used.
ZWNJ U+200C - ‌
ZWJ  U+200D - ‍
LRM  U+200E - ‎
RLM  U+200F - ‏
@feature

Test Plan: N/A

Reviewers: raster, cedric, herdsman, jpeg, woohyun

Differential Revision: https://phab.enlightenment.org/D5173
This commit is contained in:
Youngbok Shin 2017-09-11 08:53:04 +03:00 committed by Daniel Hirt
parent 7a1075500a
commit 8dbbf5c8b7
1 changed files with 4 additions and 0 deletions

View File

@ -1241,6 +1241,10 @@ static const char escape_strings[] =
"†\0" "\xe2\x80\xa0\0"
"‡\0" "\xe2\x80\xa1\0"
"•\0" "\xe2\x80\xa2\0"
"‌\0" "\xe2\x80\x8c\0"
"‍\0" "\xe2\x80\x8d\0"
"‎\0" "\xe2\x80\x8e\0"
"‏\0" "\xe2\x80\x8f\0"
;
/**