Skip to content

Commit

Permalink
Merge pull request #175 from macvim-dev/fix/redraw_redrawstatus
Browse files Browse the repository at this point in the history
Do flush in ex_redraw and ex_redrawstatus
  • Loading branch information
splhack committed Dec 17, 2015
2 parents ddc5c14 + e7ca3fe commit 2d3163f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/ex_docmd.c
Expand Up @@ -9662,6 +9662,10 @@ ex_redraw(eap)
need_wait_return = FALSE;

out_flush();
#ifdef FEAT_GUI_MACVIM
if (gui.in_use)
gui_macvim_flush();
#endif
}

/*
Expand All @@ -9685,6 +9689,10 @@ ex_redrawstatus(eap)
RedrawingDisabled = r;
p_lz = p;
out_flush();
# ifdef FEAT_GUI_MACVIM
if (gui.in_use)
gui_macvim_flush();
# endif
#endif
}

Expand Down

0 comments on commit 2d3163f

Please sign in to comment.