Nice patch, but ...

> -if [ -t 1 ]; then
> +if [[ -t 1 ]]; then
>       SAVE_POSITION="\033[s"
>       RESTORE_POSITION="\033[u"
>       DEL_TEXT="\033[$(($STAT_COL+4))G"
> @@ -116,10 +116,8 @@ stat_fail() {

Hmm, this definitely doesn't belong into this patch.

>  }
>  
>  stat_die() {
> -     retval=1
> -     [ "$1" = "" ] || retval=$1
>       stat_fail
> -     exit $retval
> +     exit ${1:-1}
>  }
>  
>  status() {

Okay, this is certainly nicer than before.

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to