__parse_options: Return 0 to avoid false negatives from _parse_* test cases.

This commit is contained in:
Ville Skyttä 2011-05-03 09:35:53 +03:00
parent 1126c831b8
commit 1c76e608fd

View File

@ -761,7 +761,7 @@ __parse_options()
*) break ;; *) break ;;
esac esac
done done
[[ $option ]] || return [[ $option ]] || return 0
IFS=$' \t\n' # affects parsing of the regexps below... IFS=$' \t\n' # affects parsing of the regexps below...