mirror of
https://github.com/vim/vim.git
synced 2025-09-30 04:44:14 -04:00
updated for version 7.3.092
Problem: Resizing the window when exiting. Solution: Don't resize when exiting.
This commit is contained in:
@@ -3053,10 +3053,13 @@ shell_resized_check()
|
|||||||
int old_Rows = Rows;
|
int old_Rows = Rows;
|
||||||
int old_Columns = Columns;
|
int old_Columns = Columns;
|
||||||
|
|
||||||
|
if (!exiting)
|
||||||
|
{
|
||||||
(void)ui_get_shellsize();
|
(void)ui_get_shellsize();
|
||||||
check_shellsize();
|
check_shellsize();
|
||||||
if (old_Rows != Rows || old_Columns != Columns)
|
if (old_Rows != Rows || old_Columns != Columns)
|
||||||
shell_resized();
|
shell_resized();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
92,
|
||||||
/**/
|
/**/
|
||||||
91,
|
91,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user