mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
updated for version 7.0-003
This commit is contained in:
@@ -4603,11 +4603,11 @@ gui_mouse_correct()
|
|||||||
/* Don't move the mouse when it's left or right of the Vim window */
|
/* Don't move the mouse when it's left or right of the Vim window */
|
||||||
if (x < 0 || x > Columns * gui.char_width)
|
if (x < 0 || x > Columns * gui.char_width)
|
||||||
return;
|
return;
|
||||||
|
if (y >= 0
|
||||||
# ifdef FEAT_WINDOWS
|
# ifdef FEAT_WINDOWS
|
||||||
if (Y_2_ROW(y) >= tabline_height())
|
&& Y_2_ROW(y) >= tabline_height()
|
||||||
# else
|
|
||||||
if (y >= 0)
|
|
||||||
# endif
|
# endif
|
||||||
|
)
|
||||||
wp = xy2win(x, y);
|
wp = xy2win(x, y);
|
||||||
if (wp != curwin && wp != NULL) /* If in other than current window */
|
if (wp != curwin && wp != NULL) /* If in other than current window */
|
||||||
{
|
{
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
3,
|
||||||
/**/
|
/**/
|
||||||
2,
|
2,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user