aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/diff.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-01-28 12:33:22 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-01-28 12:33:22 +0100
commit6f4c4be95288f83247c43e8c71218266019823ec (patch)
treea3cf6875c2c0a3fc870cfa2958f0e4439433d8fa /src/nvim/diff.c
parent16a6f445702804a406244a129b0b3ec6d546b37d (diff)
downloadrneovim-6f4c4be95288f83247c43e8c71218266019823ec.tar.gz
rneovim-6f4c4be95288f83247c43e8c71218266019823ec.tar.bz2
rneovim-6f4c4be95288f83247c43e8c71218266019823ec.zip
ex_diffpatch: don't need redraw_later(CLEAR), Nvim uses pipes
Diffstat (limited to 'src/nvim/diff.c')
-rw-r--r--src/nvim/diff.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/diff.c b/src/nvim/diff.c
index a32ac645e3..e9ecf98653 100644
--- a/src/nvim/diff.c
+++ b/src/nvim/diff.c
@@ -941,9 +941,6 @@ void ex_diffpatch(exarg_T *eap)
}
#endif
- // patch probably has written over the screen
- redraw_later(CLEAR);
-
// Delete any .orig or .rej file created.
STRCPY(buf, tmp_new);
STRCAT(buf, ".orig");