diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/terminal.c | 7 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/terminal.c b/src/terminal.c index 47f7f201d..4dd666523 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -2700,6 +2700,13 @@ term_channel_closed(channel_T *ch) VIM_CLEAR(term->tl_title); VIM_CLEAR(term->tl_status_text); +#ifdef WIN3264 + if (term->tl_out_fd != NULL) + { + fclose(term->tl_out_fd); + term->tl_out_fd = NULL; + } +#endif /* Unless in Terminal-Normal mode: clear the vterm. */ if (!term->tl_normal_mode) diff --git a/src/version.c b/src/version.c index 70e4bcdca..20f3f2fa7 100644 --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1802, +/**/ 1801, /**/ 1800, |