diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-07-18 08:37:14 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-07-18 08:37:14 +0000 |
commit | 67f16de104da5af502bf47b63ed83f981fa28739 (patch) | |
tree | 0edf3712b539b5c124d537361b4c7896139d927c /Src/Zle | |
parent | c7578846f72b385b2db1024f97280961da03190e (diff) | |
download | zsh-67f16de104da5af502bf47b63ed83f981fa28739.tar.gz zsh-67f16de104da5af502bf47b63ed83f981fa28739.tar.xz zsh-67f16de104da5af502bf47b63ed83f981fa28739.zip |
don't let duplicate matches keep us from recognising exact matches if they produce the same string on the line (12297)
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 ed53fa25a..80f558b5e 100644 --- a/Src/Zle/compcore.c +++ b/Src/Zle/compcore.c @@ -2397,7 +2397,7 @@ add_match_data(int alt, char *str, Cline line, comp_setunset(0, 0, CP_EXACTSTR, 0); } ai->exactm = cm; - } else if (useexact) { + } else if (useexact && !matcheq(cm, ai->exactm)) { ai->exact = 2; ai->exactm = NULL; if (incompfunc) |