From b8ffe570285f689e5925d83a81ef004c5f368d0d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 13 May 1997 22:44:08 +0000 Subject: [PATCH] (files): When computing arguments automatically, ignore non-files within the RCS subdirectory. --- lib-src/rcs2log | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib-src/rcs2log b/lib-src/rcs2log index d6abdeb0d0b..ded43536deb 100755 --- a/lib-src/rcs2log +++ b/lib-src/rcs2log @@ -28,7 +28,7 @@ Options: Report bugs to .' -Id='$Id: rcs2log,v 1.39 1997/05/11 18:43:55 eggert Exp eggert $' +Id='$Id: rcs2log,v 1.40 1997/05/11 20:02:32 eggert Exp eggert $' # Copyright 1992, 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. @@ -281,7 +281,9 @@ case $# in case $file in RCS/. | RCS/.. | RCS/,*, | RCS/*_) continue;; RCS/.rcsfreeze.log | RCS/.rcsfreeze.ver) continue;; - RCS/.\* | RCS/\* | .\*,v | \*,v) test -f "$file" || continue + RCS/.\* | RCS/\* | .\*,v | \*,v) test -f "$file" || continue;; + RCS/*,v | RCS/.*,v) ;; + RCS/* | RCS/.*) test -f "$file" || continue esac case $files in '') files=$file;; -- 2.39.5