Commit e420d96c authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Corrected an issue in cygwin which does not have tput

parent 722a1370
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ column ()
wrap ()
{
	local prefix="$1"
	local width=`tput cols`
	local width=`tput cols 2>/dev/null || echo 80`
	local maxspace=$((width/4))
	local line column word space
	local IFS