mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-11 20:31:11 +01:00
don't stop parsing too early when completing inside a command substitution (12885)
This commit is contained in:
parent
213a453d08
commit
6c4dfc3228
2 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
|||
2000-10-04 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 12885: Src/Zle/zle_tricky.c: don't stop parsing too early when
|
||||
completing inside a command substitution
|
||||
|
||||
* 12884: Src/Zle/compcore.c: don't forget a displayed list when
|
||||
starting menu completion
|
||||
|
||||
|
|
|
@ -1158,6 +1158,7 @@ get_comp_string(void)
|
|||
line[ll + addedx] = '\0';
|
||||
}
|
||||
lexrestore();
|
||||
tt = NULL;
|
||||
goto start;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue