aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorPaul Eggert1997-03-21 22:12:24 +0000
committerPaul Eggert1997-03-21 22:12:24 +0000
commit8fd927907bbd7766486dc8adcebc064cc0c62e48 (patch)
tree5fd64e4836775cc271ab41219d466c3f21ab42dc /lib-src
parent4cbeb71c2a97e6b4481d2d9a72e261118b97e83e (diff)
downloademacs-8fd927907bbd7766486dc8adcebc064cc0c62e48.tar.gz
emacs-8fd927907bbd7766486dc8adcebc064cc0c62e48.zip
(files): Ignore files in RCS directory whose names are of the form ,*,
or *_; they are probably RCS lock files. Also, ignore files named .rcsfreeze.log or .rcsfreeze.ver; they are used by rcsfreeze.
Diffstat (limited to 'lib-src')
-rwxr-xr-xlib-src/rcs2log14
1 files changed, 11 insertions, 3 deletions
diff --git a/lib-src/rcs2log b/lib-src/rcs2log
index 4f2b18ac54c..390bba898cb 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.35 1996/11/03 17:09:27 eggert Exp eggert $' 31Id='$Id: rcs2log,v 1.36 1997/01/20 09:03:05 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
@@ -242,7 +242,14 @@ case $# in
242 files=` 242 files=`
243 { 243 {
244 case $RCSdirs in 244 case $RCSdirs in
245 ?*) find $RCSdirs -type f -print 245 ?*) find $RCSdirs \
246 -type f \
247 ! -name '*_' \
248 ! -name ',*,' \
249 ! -name '.*_' \
250 ! -name .rcsfreeze.log \
251 ! -name .rcsfreeze.ver \
252 -print
246 esac 253 esac
247 find . -name '*,v' -print 254 find . -name '*,v' -print
248 } | 255 } |
@@ -254,7 +261,8 @@ case $# in
254 for file in RCS/.* RCS/* .*,v *,v 261 for file in RCS/.* RCS/* .*,v *,v
255 do 262 do
256 case $file in 263 case $file in
257 RCS/. | RCS/..) continue;; 264 RCS/. | RCS/.. | RCS/,*, | RCS/*_) continue;;
265 RCS/.rcsfreeze.log | RCS/.rcsfreeze.ver) continue;;
258 RCS/.\* | RCS/\* | .\*,v | \*,v) test -f "$file" || continue 266 RCS/.\* | RCS/\* | .\*,v | \*,v) test -f "$file" || continue
259 esac 267 esac
260 files=$files$nl$file 268 files=$files$nl$file