mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.0-227
This commit is contained in:
parent
97006f1ce8
commit
053b9fa9c2
@ -666,6 +666,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 */
|
||||||
|
/**/
|
||||||
|
227,
|
||||||
/**/
|
/**/
|
||||||
226,
|
226,
|
||||||
/**/
|
/**/
|
||||||
|
@ -2084,6 +2084,13 @@ win_close(win, free_buf)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef FEAT_GUI
|
||||||
|
/* Avoid trouble with scrollbars that are going to be deleted in
|
||||||
|
* win_free(). */
|
||||||
|
if (gui.in_use)
|
||||||
|
out_flush();
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Close the link to the buffer.
|
* Close the link to the buffer.
|
||||||
*/
|
*/
|
||||||
@ -4174,7 +4181,6 @@ win_free(wp, tp)
|
|||||||
#ifdef FEAT_GUI
|
#ifdef FEAT_GUI
|
||||||
if (gui.in_use)
|
if (gui.in_use)
|
||||||
{
|
{
|
||||||
out_flush();
|
|
||||||
gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
|
gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
|
||||||
gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
|
gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user