From 1ea86978463bf0d9a3e09a0b45fee2eb54bc7d21 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 23 Jan 2013 14:22:53 +0000 Subject: [PATCH] fix list remove typo in conf2 option matching which should speed up matching process considerably SVN revision: 83177 --- src/bin/e_configure_option.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bin/e_configure_option.c b/src/bin/e_configure_option.c index 67a3874d8..f93923c5d 100644 --- a/src/bin/e_configure_option.c +++ b/src/bin/e_configure_option.c @@ -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);