1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-11 08:21:13 +01:00

make sure invalidatelist() isn't called hwen we are inside menu selection and there's only one match left (17489)

This commit is contained in:
Sven Wischnowsky 2002-07-30 07:47:03 +00:00
parent 2ba552707b
commit 273929e188
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2002-07-30 Sven Wischnowsky <wischnow@zsh.org>
* 17489: Src/Zle/compresult.c: make sure invalidatelist() isn't
called hwen we are inside menu selection and there's only one
match left
2002-07-29 Peter Stephenson <pws@csr.com>
* 17488: Src/builtin.c: TYPESET_SILENT part of 17334 used

View file

@ -813,7 +813,7 @@ do_ambiguous(void)
* want to enter an AUTO_MENU imediately. */
if ((uselist == 3 ||
(!uselist && isset(BASHAUTOLIST) && isset(LISTAMBIGUOUS))) &&
la) {
la && iforcemenu != -1) {
int fc = fromcomp;
invalidatelist();