Module Name: src Committed By: maya Date: Tue Sep 24 17:23:06 UTC 2019
Modified Files: src/external/gpl2/xcvs/dist/src: ignore.c Log Message: Ignore our default core file pattern rather than one of another system. "core" shows up as a path sometimes. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/gpl2/xcvs/dist/src/ignore.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/gpl2/xcvs/dist/src/ignore.c diff -u src/external/gpl2/xcvs/dist/src/ignore.c:1.3 src/external/gpl2/xcvs/dist/src/ignore.c:1.4 --- src/external/gpl2/xcvs/dist/src/ignore.c:1.3 Tue May 17 14:00:09 2016 +++ src/external/gpl2/xcvs/dist/src/ignore.c Tue Sep 24 17:23:06 2019 @@ -8,7 +8,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ #include <sys/cdefs.h> -__RCSID("$NetBSD: ignore.c,v 1.3 2016/05/17 14:00:09 christos Exp $"); +__RCSID("$NetBSD: ignore.c,v 1.4 2019/09/24 17:23:06 maya Exp $"); /* * .cvsignore file support contributed by David G. Grubbs <d...@odi.com> @@ -36,7 +36,7 @@ static int ign_size; /* This many slot static int ign_hold = -1; /* Index where first "temporary" item * is held */ -const char *ign_default = ". .. core RCSLOG tags TAGS RCS SCCS .make.state\ +const char *ign_default = ". .. *.core RCSLOG tags TAGS RCS SCCS .make.state\ .nse_depinfo #* .#* cvslog.* ,* CVS.adm .del-* *.a *.olb *.o *.obj\ *.so *.Z *~ *.old *.elc *.ln *.bak *.BAK *.orig *.rej *.exe _$* *$"; extern const char *cvsDir;