don't list conf2 match tags for a ctx if they're tags already added to the ctx for the purpose of matching

SVN revision: 83173
This commit is contained in:
Mike Blumenkrantz 2013-01-23 14:16:01 +00:00
parent a4e5053e1d
commit 2fad65f8df
1 changed files with 1 additions and 1 deletions

View File

@ -2744,7 +2744,7 @@ e_configure_option_ctx_match_tag_list(E_Configure_Option_Ctx *ctx)
EINA_LIST_FOREACH(co->tags, ll, tag)
{
if ((!ctx->match_tags) || (!eina_list_data_find(ctx->match_tags, tag)))
if ((!ctx->match_tags) || ((!eina_list_data_find(ctx->match_tags, tag)) && (!eina_list_data_find(ctx->tags, tag))))
ctx->match_tags = eina_list_append(ctx->match_tags, tag);
}
}