changeset 13624:429f0eb87d6f v8.0.1684

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 <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Apr 2018 15:00:13 +0200
parents 7447d2dba85b
children 2caac884de74
files src/terminal.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)
     {
--- 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,