diff options
| author | David J. MacKenzie | 1994-10-19 21:27:58 +0000 |
|---|---|---|
| committer | David J. MacKenzie | 1994-10-19 21:27:58 +0000 |
| commit | ca452d5f798276bc3ee9ad868d41773a0217983e (patch) | |
| tree | b8ae2db8864a6041c1d8689877aa59bffba85091 /lib-src | |
| parent | 764954eff28b44c525ec15dd835594fa14196c04 (diff) | |
| download | emacs-ca452d5f798276bc3ee9ad868d41773a0217983e.tar.gz emacs-ca452d5f798276bc3ee9ad868d41773a0217983e.zip | |
Use test -r instead of < to check readability, to avoid syntax error.
Diffstat (limited to 'lib-src')
| -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 | |||
| 44 | test -f "$file" || continue | 44 | test -f "$file" || continue |
| 45 | 45 | ||
| 46 | # Check that file is readable. | 46 | # Check that file is readable. |
| 47 | <$file || exit | 47 | test -r "$file" || exit |
| 48 | 48 | ||
| 49 | # If the RCS file does not already exist, | 49 | # If the RCS file does not already exist, |
| 50 | # initialize it with a description from $file's first line. | 50 | # initialize it with a description from $file's first line. |