Skip to content

Commit 8610e74

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents d76626f + 84dbd49 commit 8610e74

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/screen.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,9 @@ update_screen(int type)
765765
* uses that. */
766766
gui.col = gui_cursor_col;
767767
gui.row = gui_cursor_row;
768+
# ifdef FEAT_MBYTE
769+
gui.col = mb_fix_col(gui.col, gui.row);
770+
# endif
768771
gui_update_cursor(FALSE, FALSE);
769772
screen_cur_col = gui.col;
770773
screen_cur_row = gui.row;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,8 @@ static char *(features[]) =
779779

780780
static int included_patches[] =
781781
{ /* Add new patch number below this line */
782+
/**/
783+
21,
782784
/**/
783785
20,
784786
/**/

0 commit comments

Comments
 (0)