:
: Wrapper for xwud to hide bizarre exit status
output=`xwud ${1+"$@"} 2>&1`
status=$?
if test -z "$output"
then
    exit 0
else
    echo "$output"
    exit 1
fi
