Skip to content

Commit 315c8bd

Browse files
committed
Merge pull request #183 from macvim-dev/fix/redraw
Use gui_macvim_force_flush for redraw/redrawstatus
2 parents dc8cacd + 05e488d commit 315c8bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ex_docmd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9664,7 +9664,7 @@ ex_redraw(eap)
96649664
out_flush();
96659665
#ifdef FEAT_GUI_MACVIM
96669666
if (gui.in_use)
9667-
gui_macvim_flush();
9667+
gui_macvim_force_flush();
96689668
#endif
96699669
}
96709670

@@ -9691,7 +9691,7 @@ ex_redrawstatus(eap)
96919691
out_flush();
96929692
# ifdef FEAT_GUI_MACVIM
96939693
if (gui.in_use)
9694-
gui_macvim_flush();
9694+
gui_macvim_force_flush();
96959695
# endif
96969696
#endif
96979697
}

0 commit comments

Comments
 (0)