From: Florian Forster Date: Mon, 12 Jul 2010 17:00:16 +0000 (+0200) Subject: src/graph_list.c: Use the new "graph_ident_intersect" function. X-Git-Tag: v4.0.0~98 X-Git-Url: https://git.octo.it/?p=collection4.git;a=commitdiff_plain;h=9cf5f9b6aac4ad0f2d164ba95698e9f1dfc9a8ea src/graph_list.c: Use the new "graph_ident_intersect" function. The (slightly advanced) search appears to work now. --- diff --git a/src/graph_list.c b/src/graph_list.c index a33697f..8ebf622 100644 --- a/src/graph_list.c +++ b/src/graph_list.c @@ -402,7 +402,7 @@ int gl_search (search_info_t *si, /* {{{ */ { int status; - if (!graph_matches_ident (gl_active[i], ident)) + if (!graph_ident_intersect (gl_active[i], ident)) continue; status = graph_search_inst (gl_active[i], si, @@ -416,7 +416,7 @@ int gl_search (search_info_t *si, /* {{{ */ { int status; - if (!graph_matches_ident (gl_dynamic[i], ident)) + if (!graph_ident_intersect (gl_dynamic[i], ident)) continue; status = graph_search_inst (gl_dynamic[i], si,