diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-03 11:25:11 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-03 11:25:11 +0000 |
commit | 6150ef8696a3081772122743eb650d8449d4f7a3 (patch) | |
tree | 5218fd9557cf249c2647ffa6d7f5da27bf840cdc /Src | |
parent | cceb2667651f3f4500be1b44aff2bf95e0beed7b (diff) | |
download | zsh-6150ef8696a3081772122743eb650d8449d4f7a3.tar.gz zsh-6150ef8696a3081772122743eb650d8449d4f7a3.tar.xz zsh-6150ef8696a3081772122743eb650d8449d4f7a3.zip |
(13892) fixes for fpaths and completion matching
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Zle/compmatch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Src/Zle/compmatch.c b/Src/Zle/compmatch.c index fc1e6fb54..8e8a7ae7f 100644 --- a/Src/Zle/compmatch.c +++ b/Src/Zle/compmatch.c @@ -2076,8 +2076,7 @@ join_clines(Cline o, Cline n) if ((diff = sub_join(o, n, tn, 0))) { o->flags = (o->flags & ~CLF_MISS) | of; - if (po && po->prefix && - cmp_anchors(o, po, 0)) { + if (po && po->prefix) { po->flags |= CLF_MISS; po->max += diff; } |