fix list remove typo in conf2 option matching which should speed up matching process considerably

SVN revision: 83177
This commit is contained in:
Mike Blumenkrantz 2013-01-23 14:22:53 +00:00
parent 6f3db35204
commit 1ea8697846
1 changed files with 4 additions and 4 deletions

View File

@ -2599,7 +2599,7 @@ e_configure_option_ctx_update(E_Configure_Option_Ctx *ctx, const char *str)
tmp = eina_list_free(tmp);
break;
}
tlist = eina_list_remove(tlist, l);
tlist = eina_list_remove_list(tlist, l);
if (strncmp(s, alias, e - s))
{
tmp = eina_list_append(tmp, tag);
@ -2626,7 +2626,7 @@ e_configure_option_ctx_update(E_Configure_Option_Ctx *ctx, const char *str)
tmp = eina_list_free(tmp);
break;
}
tlist = eina_list_remove(tlist, l);
tlist = eina_list_remove_list(tlist, l);
if (strncmp(s, alias, e - s))
{
tmp = eina_list_append(tmp, tag);
@ -2656,7 +2656,7 @@ e_configure_option_ctx_update(E_Configure_Option_Ctx *ctx, const char *str)
tmp = eina_list_free(tmp);
break;
}
tlist = eina_list_remove(tlist, l);
tlist = eina_list_remove_list(tlist, l);
if (strncmp(s, tag, e - s))
{
tmp = eina_list_append(tmp, tag);
@ -2682,7 +2682,7 @@ e_configure_option_ctx_update(E_Configure_Option_Ctx *ctx, const char *str)
tmp = eina_list_free(tmp);
break;
}
tlist = eina_list_remove(tlist, l);
tlist = eina_list_remove_list(tlist, l);
if (strncmp(s, tag, e - s))
{
tmp = eina_list_append(tmp, tag);