# HG changeset patch # User Christian Brabandt # Date 1523365213 -7200 # Node ID 429f0eb87d6ff15270b761c20e5889ecc1dc3fe6 # Parent 7447d2dba85bb2b6ae2aed3bfca064d190fbfa10 patch 8.0.1684: ml_get errors when using terminal window for shell command commit https://github.com/vim/vim/commit/07b46af645fa7a2b95afec3f3d87c91942d9cbd0 Author: Bram Moolenaar Date: Tue Apr 10 14:56:18 2018 +0200 patch 8.0.1684: ml_get errors when using terminal window for shell command Problem: ml_get errors when using terminal window for shell command. (Blay263) Solution: Do not change the size of the current window. diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -225,8 +225,8 @@ set_term_and_win_size(term_T *term) * at the command line and scroll up as needed, using tl_toprow. */ term->tl_rows = Rows; term->tl_cols = Columns; + return; } - else #endif if (*curwin->w_p_tms != NUL) { diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1684, +/**/ 1683, /**/ 1682,