aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorPaul Eggert1997-05-13 22:44:08 +0000
committerPaul Eggert1997-05-13 22:44:08 +0000
commitb8ffe570285f689e5925d83a81ef004c5f368d0d (patch)
tree09216eaac3fc778627e8a7c2ba807d04a31f7a67 /lib-src
parent9e594a2e8ce78e4e783681e3714c7789e2d15016 (diff)
downloademacs-b8ffe570285f689e5925d83a81ef004c5f368d0d.tar.gz
emacs-b8ffe570285f689e5925d83a81ef004c5f368d0d.zip
(files): When computing arguments automatically, ignore non-files
within the RCS subdirectory.
Diffstat (limited to 'lib-src')
-rwxr-xr-xlib-src/rcs2log6
1 files 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:
28 28
29Report bugs to <bug-gnu-emacs@prep.ai.mit.edu>.' 29Report bugs to <bug-gnu-emacs@prep.ai.mit.edu>.'
30 30
31Id='$Id: rcs2log,v 1.39 1997/05/11 18:43:55 eggert Exp eggert $' 31Id='$Id: rcs2log,v 1.40 1997/05/11 20:02:32 eggert Exp eggert $'
32 32
33# Copyright 1992, 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. 33# Copyright 1992, 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
34 34
@@ -281,7 +281,9 @@ case $# in
281 case $file in 281 case $file in
282 RCS/. | RCS/.. | RCS/,*, | RCS/*_) continue;; 282 RCS/. | RCS/.. | RCS/,*, | RCS/*_) continue;;
283 RCS/.rcsfreeze.log | RCS/.rcsfreeze.ver) continue;; 283 RCS/.rcsfreeze.log | RCS/.rcsfreeze.ver) continue;;
284 RCS/.\* | RCS/\* | .\*,v | \*,v) test -f "$file" || continue 284 RCS/.\* | RCS/\* | .\*,v | \*,v) test -f "$file" || continue;;
285 RCS/*,v | RCS/.*,v) ;;
286 RCS/* | RCS/.*) test -f "$file" || continue
285 esac 287 esac
286 case $files in 288 case $files in
287 '') files=$file;; 289 '') files=$file;;