# HG changeset patch # User Paul Eggert # Date 863563448 0 # Node ID c113f8bd706c37e22dc141c5fd80d79059a366a9 # Parent 3ae7560f095923a15cd559c0624b5b6beaeae1b3 (files): When computing arguments automatically, ignore non-files within the RCS subdirectory. diff -r 3ae7560f0959 -r c113f8bd706c lib-src/=rcs2log --- a/lib-src/=rcs2log Tue May 13 19:52:56 1997 +0000 +++ b/lib-src/=rcs2log Tue May 13 22:44:08 1997 +0000 @@ -28,7 +28,7 @@ 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 $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;; diff -r 3ae7560f0959 -r c113f8bd706c lib-src/rcs2log --- a/lib-src/rcs2log Tue May 13 19:52:56 1997 +0000 +++ b/lib-src/rcs2log Tue May 13 22:44:08 1997 +0000 @@ -28,7 +28,7 @@ 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 $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;;