comparison lib-src/=rcs2log @ 17791:c113f8bd706c

(files): When computing arguments automatically, ignore non-files within the RCS subdirectory.
author Paul Eggert <eggert@twinsun.com>
date Tue, 13 May 1997 22:44:08 +0000
parents 0c832661d9b4
children
comparison
equal deleted inserted replaced
17790:3ae7560f0959 17791:c113f8bd706c
26 --help Output help. 26 --help Output help.
27 --version Output version number. 27 --version Output version number.
28 28
29 Report bugs to <bug-gnu-emacs@prep.ai.mit.edu>.' 29 Report bugs to <bug-gnu-emacs@prep.ai.mit.edu>.'
30 30
31 Id='$Id: rcs2log,v 1.39 1997/05/11 18:43:55 eggert Exp eggert $' 31 Id='$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
35 # This program is free software; you can redistribute it and/or modify 35 # This program is free software; you can redistribute it and/or modify
36 # it under the terms of the GNU General Public License as published by 36 # it under the terms of the GNU General Public License as published by
279 for file in RCS/.* RCS/* .*,v *,v 279 for file in RCS/.* RCS/* .*,v *,v
280 do 280 do
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;;
288 ?*) files=$files$nl$file 290 ?*) files=$files$nl$file
289 esac 291 esac