terminology: small speedup by calling directly the underlying function.

SVN revision: 82934
This commit is contained in:
Cedric BAIL 2013-01-17 12:15:02 +00:00
parent afdf76e7aa
commit 37d7bdd9c2
1 changed files with 2 additions and 1 deletions

View File

@ -203,7 +203,8 @@ _cb_fd_read(void *data, Ecore_Fd_Handler *fd_handler __UNUSED__)
if (buf[i])
{
i = evas_string_char_next_get(buf, i, &g);
g = eina_unicode_utf8_get_next(buf, &i);
/* i = evas_string_char_next_get(buf, i, &g); */
if (i < 0) break;
// DBG("(%i) %02x '%c'", j, g, g);
}