src/graph.[ch]: Rename "graph_matches_ident" to "graph_ident_matches".
authorFlorian Forster <ff@octo.it>
Mon, 12 Jul 2010 09:26:14 +0000 (11:26 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 12 Jul 2010 09:26:14 +0000 (11:26 +0200)
src/graph.c
src/graph.h
src/graph_list.c

index 9b545fd..845bbb7 100644 (file)
@@ -297,7 +297,7 @@ int graph_add_def (graph_config_t *cfg, graph_def_t *def) /* {{{ */
   return (def_append (cfg->defs, tmp));
 } /* }}} int graph_add_def */
 
-_Bool graph_matches_ident (graph_config_t *cfg, const graph_ident_t *ident) /* {{{ */
+_Bool graph_ident_matches (graph_config_t *cfg, const graph_ident_t *ident) /* {{{ */
 {
 #if C4_DEBUG
   if ((cfg == NULL) || (ident == NULL))
@@ -305,7 +305,7 @@ _Bool graph_matches_ident (graph_config_t *cfg, const graph_ident_t *ident) /* {
 #endif
 
   return (ident_matches (cfg->select, ident));
-} /* }}} _Bool graph_matches_ident */
+} /* }}} _Bool graph_ident_matches */
 
 _Bool graph_matches_field (graph_config_t *cfg, /* {{{ */
     graph_ident_field_t field, const char *field_value)
index b6f2e7c..7a433f1 100644 (file)
@@ -52,7 +52,7 @@ graph_def_t *graph_get_defs (graph_config_t *cfg);
 
 int graph_add_def (graph_config_t *cfg, graph_def_t *def);
 
-_Bool graph_matches_ident (graph_config_t *cfg, const graph_ident_t *ident);
+_Bool graph_ident_matches (graph_config_t *cfg, const graph_ident_t *ident);
 
 /* Compares the given string with the appropriate field of the selector. If the
  * selector field is "/all/" or "/any/", returns true without checking the
index ef52cb3..89f3e5d 100644 (file)
@@ -173,7 +173,7 @@ static int gl_register_file (const graph_ident_t *file, /* {{{ */
     graph_config_t *cfg = gl_active[i];
     int status;
 
-    if (!graph_matches_ident (cfg, file))
+    if (!graph_ident_matches (cfg, file))
       continue;
 
     status = graph_add_file (cfg, file);