about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2015-06-29 01:46:39 +0200
committerOliver Kiddle <opk@zsh.org>2015-06-29 01:46:39 +0200
commitfbc97e72e8f3f0b9be9bd3f24f36a1e8e5a6701d (patch)
treec8e3ad2b7f5243e62eff02aa80d9071bef1e0bd7
parent93e5234532eb14acbb90c7502f2728589f375277 (diff)
downloadzsh-fbc97e72e8f3f0b9be9bd3f24f36a1e8e5a6701d.tar.gz
zsh-fbc97e72e8f3f0b9be9bd3f24f36a1e8e5a6701d.tar.xz
zsh-fbc97e72e8f3f0b9be9bd3f24f36a1e8e5a6701d.zip
35623: fix menu-selection where initial selection
would not be displayed without scrolling
-rw-r--r--ChangeLog5
-rw-r--r--Src/Zle/complist.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c70c0de9f..2ea6492e5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-06-29  Oliver Kiddle  <opk@zsh.org>
+
+	* 35623: Src/Zle/complist.c: fix menu-selection where initial
+	selection would not be displayed without scrolling
+
 2015-06-28  Peter Stephenson  <p.w.stephenson@ntlworld.com>
 
 	* 35643: Src/parse.c: redirections after typeset assignments
diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c
index ccee9a724..18551d05d 100644
--- a/Src/Zle/complist.c
+++ b/Src/Zle/complist.c
@@ -2071,6 +2071,7 @@ complistmatches(UNUSED(Hookdef dummy), Chdata dat)
 	memset(mgtab, 0, i * sizeof(Cmgroup));
 	mlastcols = mcols = zterm_columns;
 	mlastlines = mlines = listdat.nlines;
+	mmtabp = 0;
     }
     last_cap = (char *) zhalloc(max_caplen + 1);
     *last_cap = '\0';
@@ -2562,6 +2563,8 @@ domenuselect(Hookdef dummy, Chdata dat)
 	}
 	p = mmtabp;
 	pg = mgtabp;
+	if (!p) /* selected match not in display, find line */
+	    continue;
 	minfo.cur = *p;
 	minfo.group = *pg;
 	if (setwish)