termiointernals: handle EM (end of medium) as word separator

This commit is contained in:
Boris Faure 2020-05-11 23:22:58 +02:00
parent 8c410d0e1d
commit 3be858b09b
Signed by untrusted user who does not match committer: borisfaure
GPG Key ID: 35C0410516166BE8
1 changed files with 2 additions and 6 deletions

View File

@ -632,12 +632,6 @@ _codepoint_is_wordsep(const Eina_Unicode g)
// http://en.wikipedia.org/wiki/Bracket
static const Eina_Unicode wordsep[] =
{
0,
' ',
'!',
'"',
'#',
'$',
'\'',
'(',
')',
@ -802,6 +796,8 @@ _codepoint_is_wordsep(const Eina_Unicode g)
if (g & 0x80000000)
return EINA_TRUE;
if (g < '.')
return EINA_TRUE;
while (imax >= imin)
{