diff src/terminal.c @ 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 b6998c6374e1
children ab89131d30e0
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)
     {