From ed81a94967d61ce46e97e43c2f937f00b8932129 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 4 Feb 1995 20:27:23 +0000 Subject: [PATCH] added *.info and *.db to the default "ignore" list in cvs to avoid obviously common mistakes. --- gnu/usr.bin/cvs/cvs/ignore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/usr.bin/cvs/cvs/ignore.c b/gnu/usr.bin/cvs/cvs/ignore.c index 823648786c60..1b6428fc172a 100644 --- a/gnu/usr.bin/cvs/cvs/ignore.c +++ b/gnu/usr.bin/cvs/cvs/ignore.c @@ -26,7 +26,7 @@ static int ign_size; /* This many slots available (plus static int ign_hold; /* Index where first "temporary" item * is held */ -char *ign_default = ". .. core RCSLOG tags TAGS RCS SCCS .make.state .nse_depinfo #* .#* cvslog.* ,* CVS* .del-* *.a *.o *.so *.Z *~ *.old *.elc *.ln *.bak *.BAK *.orig *.rej"; +char *ign_default = ". .. core RCSLOG tags TAGS RCS SCCS .make.state .nse_depinfo #* .#* cvslog.* ,* CVS* .del-* *.a *.o *.so *.Z *~ *.old *.elc *.ln *.bak *.BAK *.orig *.rej *.info *.db"; #define IGN_GROW 16 /* grow the list by 16 elements at a * time */