diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-04 16:19:06 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-04 16:19:06 +0000 |
commit | 672f5c459e9617aa94e93af552b436e08a4a0184 (patch) | |
tree | d92e48c3e0a93cef225f117fe6cf4cabd1f7c688 /Completion | |
parent | e7895ac92c8398b1c554e218c373316356ccbd19 (diff) | |
download | zsh-672f5c459e9617aa94e93af552b436e08a4a0184.tar.gz zsh-672f5c459e9617aa94e93af552b436e08a4a0184.tar.xz zsh-672f5c459e9617aa94e93af552b436e08a4a0184.zip |
11157: Completion/Core/_requested: fail if _all_labels is failed.
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Core/_requested | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Core/_requested b/Completion/Core/_requested index 01dee8f11..2772b1bd7 100644 --- a/Completion/Core/_requested +++ b/Completion/Core/_requested @@ -9,7 +9,7 @@ fi if comptags -R "$1"; then if [[ $# -gt 3 ]]; then - _all_labels - "$gopt" "$@" + _all_labels - "$gopt" "$@" || return 1 elif [[ $# -gt 1 ]]; then _description "$gopt" "$@" fi |