termiointernals.c: do not consider '-' as a word separator

This commit is contained in:
Boris Faure 2020-05-18 16:24:51 +02:00
parent de969e7cef
commit 29cce7e73e
Signed by untrusted user who does not match committer: borisfaure
GPG Key ID: 35C0410516166BE8
1 changed files with 1 additions and 1 deletions

View File

@ -796,7 +796,7 @@ _codepoint_is_wordsep(const Eina_Unicode g)
if (g & 0x80000000)
return EINA_TRUE;
if (g < '.')
if (g <= '$')
return EINA_TRUE;
while (imax >= imin)