updated for version 7.0205

This commit is contained in:
Bram Moolenaar
2006-02-23 21:32:16 +00:00
parent 80a94a582c
commit df1bdc92c2
14 changed files with 111 additions and 534 deletions

View File

@@ -4695,10 +4695,18 @@ check_termcode(max_offset, buf, buflen)
&& orig_num_clicks != 4
&& orig_mouse_col == mouse_col
&& orig_mouse_row == mouse_row
&& ((orig_topline == curwin->w_topline
#ifdef FEAT_DIFF
&& orig_topfill == curwin->w_topfill
&& orig_topfill == curwin->w_topfill
#endif
&& orig_topline == curwin->w_topline)
)
#ifdef FEAT_WINDOWS
/* Double click in tab pages line also works
* when window contents changes. */
|| (mouse_row == 0 && firstwin->w_winrow > 0)
#endif
)
)
++orig_num_clicks;
else
orig_num_clicks = 1;