From 193846af847cb469d69611e84955486808c4ec6f Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Thu, 25 Jan 2001 15:16:27 +0000 Subject: fix for mergin two CLF_MID entries in cline lists (with two equal prefixes it thought there were characters missing) (13388) --- Src/Zle/compmatch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src') diff --git a/Src/Zle/compmatch.c b/Src/Zle/compmatch.c index e5aafdfcc..0bd8e82f3 100644 --- a/Src/Zle/compmatch.c +++ b/Src/Zle/compmatch.c @@ -1627,7 +1627,7 @@ join_psfx(Cline ot, Cline nt, Cline *orest, Cline *nrest, int sfx) *orest = NULL; if (nrest) *nrest = n; - if (n) + if (n && n->wlen) ot->flags |= CLF_MISS; return; -- cgit 1.4.1