From: David J. MacKenzie Date: Wed, 19 Oct 1994 21:27:58 +0000 (+0000) Subject: Use test -r instead of < to check readability, to avoid syntax error. X-Git-Tag: emacs-19.34~6244 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ca452d5f798276bc3ee9ad868d41773a0217983e;p=emacs.git Use test -r instead of < to check readability, to avoid syntax error. --- 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.