diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-28 09:42:50 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-28 09:42:50 +0000 |
commit | 45a6914ed7b944a5e974399ca91a2b39e1727b26 (patch) | |
tree | 980f854b8c16a26204ea6cad0da1d63716d0803a | |
parent | fde669f76d331fbe64e420a384b27ec908bd97d8 (diff) | |
download | zsh-45a6914ed7b944a5e974399ca91a2b39e1727b26.tar.gz zsh-45a6914ed7b944a5e974399ca91a2b39e1727b26.tar.xz zsh-45a6914ed7b944a5e974399ca91a2b39e1727b26.zip |
reset _comp_mesg (saying whether there were messages) appropriately (12105)
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Core/_main_complete | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 5e652b1e2..16a967274 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-06-28 Sven Wischnowsky <wischnow@zsh.org> + * 12105: Completion/Core/_main_complete: reset _comp_mesg (saying + whether there were messages) appropriately + * Jan Fedak: 12097: Completion/Use/_ssh: use _ports when completing remote ports diff --git a/Completion/Core/_main_complete b/Completion/Core/_main_complete index 690192020..402fe65ef 100644 --- a/Completion/Core/_main_complete +++ b/Completion/Core/_main_complete @@ -144,6 +144,7 @@ for tmp in "$_completers[@]"; do _matcher_num=1 for _matcher in "$_matchers[@]"; do + _comp_mesg= if [[ -n "$call" ]]; then if "${(@)argv[3,-1]}"; then ret=0 |