search for: cvs_ignore_list

Displaying 2 results from an estimated 2 matches for "cvs_ignore_list".

2001 Sep 30
0
Exclude sets generated with -C
...ude=configure --exclude=config.log /home/sits/orig/rsync-2.4.6/exclude.c ./exclude.c --- /home/sits/orig/rsync-2.4.6/exclude.c Wed Sep 6 13:46:43 2000 +++ ./exclude.c Sat Sep 29 21:45:53 2001 @@ -27,6 +27,10 @@ static struct exclude_struct **exclude_list; +/* Global CVS exclude list, set from cvs_ignore_list, ~/.cvsignore + and getenv("CVSIGNORE"). */ +static struct exclude_struct **global_cvs_exclude_list; + /* build an exclude structure given a exclude pattern */ static struct exclude_struct *make_exclude(char *pattern, int include) { @@ -125,6 +129,7 @@ STRUCT_STAT *st) { int...
2002 Nov 11
0
Regular Expression support
...exp) { char *tok; if (!p || !*p) return; p = strdup(p); if (!p) out_of_memory("add_include_line"); for (tok=get_exclude_tok(p); tok; tok=get_exclude_tok(NULL)) - add_exclude(tok, 1); + add_exclude(tok, 1, regexp); free(p); } @@ -401,12 +496,12 @@ int i; for (i=0; cvs_ignore_list[i]; i++) - add_exclude(cvs_ignore_list[i], 0); + add_exclude(cvs_ignore_list[i], 0, 0); if ((p=getenv("HOME")) && strlen(p) < (MAXPATHLEN-12)) { snprintf(fname,sizeof(fname), "%s/.cvsignore",p); - add_exclude_file(fname,0,0); + add_exclude_file(fname,0,0,0)...