From 39b2b5eb2a3a1889e78eb2b3f101f2c529c5bf03 Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Fri, 25 Feb 2000 09:53:18 +0000 Subject: zsh-workers/9870 --- Src/Zle/compresult.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Src/Zle') diff --git a/Src/Zle/compresult.c b/Src/Zle/compresult.c index 64de5c744..d49c7b811 100644 --- a/Src/Zle/compresult.c +++ b/Src/Zle/compresult.c @@ -627,10 +627,9 @@ do_ambiguous(void) cline_str(ainfo->line, 1, NULL); /* Sometimes the different match specs used may result in a cline - * that is shorter than the original string. If that happened, we - * re-insert the old string. Unless there were matches added with - * -U, that is. */ - if (lastend - wb < we - wb && !hasunmatched) { + * that gives an empty string. If that happened, we re-insert the + * old string. Unless there were matches added with -U, that is. */ + if (!(lastend - wb) && !hasunmatched) { cs = wb; foredel(lastend - wb); inststrlen(old, 0, we - wb); -- cgit 1.4.1