diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-12 07:03:41 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-12 07:03:41 +0000 |
commit | 6472a2b7bc524fbe3f543a41e8991e82e2580443 (patch) | |
tree | 062f102877faced270ed214698203f22dd5338f5 /Src/Zle | |
parent | 1452bfe1017cf83889919d561d3046c1b9ba1fb5 (diff) | |
download | zsh-6472a2b7bc524fbe3f543a41e8991e82e2580443.tar.gz zsh-6472a2b7bc524fbe3f543a41e8991e82e2580443.tar.xz zsh-6472a2b7bc524fbe3f543a41e8991e82e2580443.zip |
fix for compadd -x when there are no matches (11335)
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/compcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/compcore.c b/Src/Zle/compcore.c index ee218e132..e8ea28400 100644 --- a/Src/Zle/compcore.c +++ b/Src/Zle/compcore.c @@ -400,7 +400,7 @@ do_completion(Hookdef dummy, Compldat dat) if (nmatches > 1 && diffmatches) { /* There is more than one match. */ ret = do_ambiguous(); - } else if (nmatches == 1 || !diffmatches) { + } else if (nmatches == 1 || (nmatches > 1 && !diffmatches)) { /* Only one match. */ Cmgroup m = amatches; |