Displaying 2 results from an estimated 2 matches for "add_exclude_lin".
Did you mean:
add_exclude_line
2001 Sep 30
0
Exclude sets generated with -C
...in
+ local_exclude_list. */
+ if (cvs_exclude) {
+ for (n=0; global_cvs_exclude_list[n]; n++)
+ if (check_one_exclude(name,
+ global_cvs_exclude_list[n],st))
+ return !global_cvs_exclude_list[n]->include;
+ }
+
return 0;
}
@@ -319,16 +336,21 @@
return(t);
}
-
-void add_exclude_line(char *p)
+static void add_exclude_line_to_list(char *p,
+ struct exclude_struct ***list)
{
char *tok;
if (!p || !*p) return;
p = strdup(p);
if (!p) out_of_memory("add_exclude_line");
for (tok=get_exclude_tok(p); tok; tok=get_exclude_tok(NULL))
- add_exclude(tok, 0);...
2002 Nov 11
0
Regular Expression support
...l);
}
+ }
write_buf(f,pattern,l);
}
@@ -309,7 +404,7 @@
while ((l=read_int(f))) {
if (l >= MAXPATHLEN) overflow("recv_exclude_list");
read_sbuf(f,line,l);
- add_exclude(line,0);
+ add_exclude(line,0,0);
}
}
@@ -362,25 +457,25 @@
}
-void add_exclude_line(char *p)
+void add_exclude_line(char *p, int regexp)
{
char *tok;
if (!p || !*p) return;
p = strdup(p);
if (!p) out_of_memory("add_exclude_line");
for (tok=get_exclude_tok(p); tok; tok=get_exclude_tok(NULL))
- add_exclude(tok, 0);
+ add_exclude(tok, 0, regexp);
free(p);...