Problem: When 'cursorbind' is set another window may scroll unexpectedly
when 'scrollbind' is also set. (Xavier Wang)
Solution: Don't call update_topline() if 'scrollbind' is set.
if (has_mbyte)
mb_adjust_cursor();
# endif
-
redraw_later(VALID);
- update_topline();
+
+ /* Only scroll when 'scrollbind' hasn't done this. */
+ if (!curwin->w_p_scb)
+ update_topline();
# ifdef FEAT_WINDOWS
curwin->w_redr_status = TRUE;
# endif
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 106,
/**/
105,
/**/