diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-04 13:54:00 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-04 13:54:00 +0000 |
commit | 6c4dfc3228dabcc335922f27c4fc57c181e33895 (patch) | |
tree | 68603da4e524a12e8cae678ace0bd025b79016f5 /Src | |
parent | 213a453d08fe01618856b064d1d2a2884980e02a (diff) | |
download | zsh-6c4dfc3228dabcc335922f27c4fc57c181e33895.tar.gz zsh-6c4dfc3228dabcc335922f27c4fc57c181e33895.tar.xz zsh-6c4dfc3228dabcc335922f27c4fc57c181e33895.zip |
don't stop parsing too early when completing inside a command substitution (12885)
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Zle/zle_tricky.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/Zle/zle_tricky.c b/Src/Zle/zle_tricky.c index f9ba965db..d6250ce23 100644 --- a/Src/Zle/zle_tricky.c +++ b/Src/Zle/zle_tricky.c @@ -1158,6 +1158,7 @@ get_comp_string(void) line[ll + addedx] = '\0'; } lexrestore(); + tt = NULL; goto start; } } |