summaryrefslogtreecommitdiff
path: root/src/fold.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fold.c')
-rw-r--r--src/fold.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fold.c b/src/fold.c
index ee94a979f..83d1cf68d 100644
--- a/src/fold.c
+++ b/src/fold.c
@@ -413,7 +413,7 @@ opFoldRange(
emsg(_(e_no_fold_found));
// Force a redraw to remove the Visual highlighting.
if (had_visual)
- redraw_curbuf_later(INVERTED);
+ redraw_curbuf_later(UPD_INVERTED);
}
// openFold() {{{2
@@ -786,7 +786,7 @@ deleteFold(
emsg(_(e_no_fold_found));
// Force a redraw to remove the Visual highlighting.
if (had_visual)
- redraw_curbuf_later(INVERTED);
+ redraw_curbuf_later(UPD_INVERTED);
}
else
// Deleting markers may make cursor column invalid.
@@ -875,7 +875,7 @@ foldUpdate(win_T *wp, linenr_T top, linenr_T bot)
foldUpdateAll(win_T *win)
{
win->w_foldinvalid = TRUE;
- redraw_win_later(win, NOT_VALID);
+ redraw_win_later(win, UPD_NOT_VALID);
}
// foldMoveTo() {{{2