mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
updated for version 7.2b-028
This commit is contained in:
@@ -901,9 +901,10 @@ gui_update_cursor(force, clear_selection)
|
|||||||
int attr;
|
int attr;
|
||||||
attrentry_T *aep = NULL;
|
attrentry_T *aep = NULL;
|
||||||
|
|
||||||
/* Don't update the cursor when halfway busy scrolling.
|
/* Don't update the cursor when halfway busy scrolling or the screen size
|
||||||
* ScreenLines[] isn't valid then. */
|
* doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then. */
|
||||||
if (!can_update_cursor)
|
if (!can_update_cursor || screen_Columns != gui.num_cols
|
||||||
|
|| screen_Rows != gui.num_rows)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
gui_check_pos();
|
gui_check_pos();
|
||||||
|
@@ -676,6 +676,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 */
|
||||||
|
/**/
|
||||||
|
28,
|
||||||
/**/
|
/**/
|
||||||
27,
|
27,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user