diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-27 17:15:01 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-27 17:15:01 +0000 |
commit | 4f3066704aa868d0d41ef5a37589ae0a998b0b5c (patch) | |
tree | 401a739e4df335441ac33c143eaec7e6263391f3 /usr.bin/cvs/file.c | |
parent | 1fecfa10dd7373f8e08f7be6a152dc2aa47955e5 (diff) |
the `.#*' pattern actually still matches, include it in standard
ignore patterns
Diffstat (limited to 'usr.bin/cvs/file.c')
-rw-r--r-- | usr.bin/cvs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c index 6d1e78de560..1750175dbfe 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.7 2004/07/27 16:56:10 jfb Exp $ */ +/* $OpenBSD: file.c,v 1.8 2004/07/27 17:15:00 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -74,6 +74,7 @@ static const char *cvs_ign_std[] = { "*.depend", "CVS", "core", + ".#*", #ifdef OLD_SMELLY_CRUFT "RCSLOG", "tags", @@ -81,7 +82,6 @@ static const char *cvs_ign_std[] = { "RCS", "SCCS", "#*", - ".#*", ",*", #endif }; |