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:
delphij 2006-08-30 08:20:34 +00:00
parent 4736b1fdce
commit 5ffbf296e8

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