diff options
author | David J. MacKenzie <djm@gnu.org> | 1994-10-19 21:27:58 +0000 |
---|---|---|
committer | David J. MacKenzie <djm@gnu.org> | 1994-10-19 21:27:58 +0000 |
commit | ca452d5f798276bc3ee9ad868d41773a0217983e (patch) | |
tree | b8ae2db8864a6041c1d8689877aa59bffba85091 /lib-src/rcs-checkin | |
parent | 764954eff28b44c525ec15dd835594fa14196c04 (diff) | |
download | emacs-ca452d5f798276bc3ee9ad868d41773a0217983e.tar.gz |
Use test -r instead of < to check readability, to avoid syntax error.
Diffstat (limited to 'lib-src/rcs-checkin')
-rwxr-xr-x | lib-src/rcs-checkin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/rcs-checkin b/lib-src/rcs-checkin index 7b894eac83d..3f41d48b0da 100755 --- a/lib-src/rcs-checkin +++ b/lib-src/rcs-checkin @@ -44,7 +44,7 @@ do test -f "$file" || continue # Check that file is readable. - <$file || exit + test -r "$file" || exit # If the RCS file does not already exist, # initialize it with a description from $file's first line. |