diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-28 12:42:24 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-28 12:42:24 +0000 |
commit | 5a3fe9220dd77337202f8f095444556f4129a3f9 (patch) | |
tree | 3681c4660deeca3511b3673bd003b18ff5611dee /Src/Zle | |
parent | a3cf03751aea772f1e0307c8899b5e4f751ff24c (diff) | |
download | zsh-5a3fe9220dd77337202f8f095444556f4129a3f9.tar.gz zsh-5a3fe9220dd77337202f8f095444556f4129a3f9.tar.xz zsh-5a3fe9220dd77337202f8f095444556f4129a3f9.zip |
misplaced cursor with partial-word matching (11007)
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/compmatch.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Src/Zle/compmatch.c b/Src/Zle/compmatch.c index 3a6a849b9..f38ea6a9f 100644 --- a/Src/Zle/compmatch.c +++ b/Src/Zle/compmatch.c @@ -1917,14 +1917,8 @@ join_clines(Cline o, Cline n) if (tn) { diff = sub_join(o, n, tn, 0); - - if (po && po->prefix && cmp_anchors(n, pn, 0)) { - po->flags |= CLF_MISS; - po->max += diff; - } else { - o->flags |= CLF_MISS; - o->max += diff; - } + o->flags |= CLF_MISS; + o->max += diff; n = tn; po = o; o = o->next; |