# HG changeset patch # User Bram Moolenaar # Date 1293716856 -3600 # Node ID 5a1fe35a6eafb1c994955a34d8152996d53838e3 # Parent 6a2e4860134bf0e4b5edf382627809dc6cec309c 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 92, +/**/ 91, /**/ 90,