From 05e488d36905b719a9f24a3047e511fec13b658e Mon Sep 17 00:00:00 2001 From: Kazuki Sakamoto Date: Sat, 19 Dec 2015 22:10:37 -0800 Subject: [PATCH] Use gui_macvim_force_flush for redraw/redrawstatus --- src/ex_docmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 72c88018cb..5268711211 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -9664,7 +9664,7 @@ ex_redraw(eap) out_flush(); #ifdef FEAT_GUI_MACVIM if (gui.in_use) - gui_macvim_flush(); + gui_macvim_force_flush(); #endif } @@ -9691,7 +9691,7 @@ ex_redrawstatus(eap) out_flush(); # ifdef FEAT_GUI_MACVIM if (gui.in_use) - gui_macvim_flush(); + gui_macvim_force_flush(); # endif #endif }