From fd574101a92d1df3e0aa7f91fb3feb4c6f3d0863 Mon Sep 17 00:00:00 2001 From: "Barton E. Schaefer" Date: Sat, 25 Apr 2015 11:07:14 -0700 Subject: 34961: avoid _message because it aborts completer list too early --- ChangeLog | 3 +++ Completion/Unix/Command/_mkdir | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b518a33a6..91a4952cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2015-04-25 Barton E. Schaefer + * 34961: Completion/Unix/Command/_mkdir: avoid _message because + it aborts completer list too early + * 34961: Completion/Base/Completer/_history: unquote history words when command line has a quote 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 -- cgit 1.4.1