From: Bram Moolenaar Date: Thu, 30 Dec 2010 13:47:36 +0000 (+0100) Subject: updated for version 7.3.092 X-Git-Tag: v7.3.092 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9980835c68a718ac8616b85f595c5f957667e9a2;p=vim updated for version 7.3.092 Problem: Resizing the window when exiting. Solution: Don't resize when exiting. --- diff --git a/src/term.c b/src/term.c index 15a386493..f41c477c4 100644 --- a/src/term.c +++ b/src/term.c @@ -3053,10 +3053,13 @@ shell_resized_check() int old_Rows = Rows; int old_Columns = Columns; - (void)ui_get_shellsize(); - check_shellsize(); - if (old_Rows != Rows || old_Columns != Columns) - shell_resized(); + if (!exiting) + { + (void)ui_get_shellsize(); + check_shellsize(); + if (old_Rows != Rows || old_Columns != Columns) + shell_resized(); + } } /* diff --git a/src/version.c b/src/version.c index f1af5d334..88dd3be42 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 92, /**/ 91, /**/