In rev. 1.2 we have introduced a fallback handler for files with unknown

extensions.  This seems to be unnecessary and prevents less(1) from being
able to detect file changes, so remove the part.

Submitted by:	Eric Huss <e-huss netmeridian com>
PR:		bin/102624
Discussed with:	des
MFC After:	3 days
This commit is contained in:
Xin LI 2006-08-30 08:20:34 +00:00
parent 57c2251d5c
commit 9dd54fbb7e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=161732

View File

@ -13,7 +13,4 @@ case "$1" in
*.bz2)
exec bzip2 -d -c $1 2>/dev/null
;;
*)
exec cat $1 2>/dev/null
;;
esac