Grumble grumble FreeBSD grumble.
## Fancy highlighting in some terminals.
case "$TERM" in
linux*|screen*|xterm*|vt100*|eterm*)
## Fancy highlighting in some terminals.
case "$TERM" in
linux*|screen*|xterm*|vt100*|eterm*)
- bold="\[$(tput bold)\]" unbold="\[$(tput sgr0)\]" nl="\[\r\]" ;;
+ case "$(tput bold)" in
+ "") bold="\[$(tput md)\]" unbold="\[$(tput me)\]" ;;
+ *) bold="\[$(tput bold)\]" unbold="\[$(tput sgr0)\]" ;;
+ esac
+ nl="\[\r\]"
+ ;;
*)
bold='' unbold='' nl='' ;;
esac
*)
bold='' unbold='' nl='' ;;
esac