diff options
author | Barton E. Schaefer <schaefer@zsh.org> | 2015-04-25 11:07:14 -0700 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2015-04-25 11:07:14 -0700 |
commit | fd574101a92d1df3e0aa7f91fb3feb4c6f3d0863 (patch) | |
tree | 7a4035c1f53df4094d0eeef1f3cd6437f89b50db /Completion/Unix/Command/_mkdir | |
parent | 54fe61ab32435081d9f08510e3fa4375f55fbe81 (diff) | |
download | zsh-fd574101a92d1df3e0aa7f91fb3feb4c6f3d0863.tar.gz zsh-fd574101a92d1df3e0aa7f91fb3feb4c6f3d0863.tar.xz zsh-fd574101a92d1df3e0aa7f91fb3feb4c6f3d0863.zip |
34961: avoid _message because it aborts completer list too early
Diffstat (limited to 'Completion/Unix/Command/_mkdir')
-rw-r--r-- | Completion/Unix/Command/_mkdir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_mkdir b/Completion/Unix/Command/_mkdir index b5f75198f..58d6c743b 100644 --- a/Completion/Unix/Command/_mkdir +++ b/Completion/Unix/Command/_mkdir @@ -61,7 +61,7 @@ case "$state" in [[ $variant == zsh && ${#${${words[2,-1]}:#-*}} -gt 0 ]]; then _wanted directories expl \ 'parent directory (alternatively specify name of directory)' \ - _path_files -/ && ret=0 || _message 'name of directory' + _path_files -/ && ret=0 fi ;; esac |