1
0
forked from aniani/vim

updated for version 7.2b-028

This commit is contained in:
Bram Moolenaar
2008-08-06 12:37:44 +00:00
parent be555e704a
commit 1b8d33b6b2
2 changed files with 6 additions and 3 deletions

View File

@@ -901,9 +901,10 @@ gui_update_cursor(force, clear_selection)
int attr;
attrentry_T *aep = NULL;
/* Don't update the cursor when halfway busy scrolling.
* ScreenLines[] isn't valid then. */
if (!can_update_cursor)
/* Don't update the cursor when halfway busy scrolling or the screen size
* doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then. */
if (!can_update_cursor || screen_Columns != gui.num_cols
|| screen_Rows != gui.num_rows)
return;
gui_check_pos();

View File

@@ -676,6 +676,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
28,
/**/
27,
/**/