diff options
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/compmatch.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Src/Zle/compmatch.c b/Src/Zle/compmatch.c index 45220a298..e9c6721ba 100644 --- a/Src/Zle/compmatch.c +++ b/Src/Zle/compmatch.c @@ -1923,7 +1923,10 @@ join_clines(Cline o, Cline n) ((tn->flags & CLF_NEW) || !cmp_anchors(o, tn, 0)); t = tn); if (tn) { + int of = o->flags & CLF_MISS; + diff = sub_join(o, n, tn, 0); + o->flags = (o->flags & ~CLF_MISS) | of; if (po && po->prefix && cmp_anchors(n, pn, 0)) { po->flags |= CLF_MISS; @@ -2069,7 +2072,10 @@ join_clines(Cline o, Cline n) cmp_anchors(tn, o, 1)) break; if (tn) { + int of = o->flags & CLF_MISS; + if ((diff = sub_join(o, n, tn, 0))) { + o->flags = (o->flags & ~CLF_MISS) | of; if (po) { po->flags |= CLF_MISS; po->max += diff; |