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:
parent
2ba552707b
commit
273929e188
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue