summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-14 14:17:45 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-14 14:17:45 +0100
commita4d158b3c839e96ed98ff87c7b7124ff4518c4ff (patch)
tree42d3a6b65d4ae53a6e078c8f24a5ee9960e3ad24 /src/edit.c
parent28c9f895716cfa8f1220bc41b72a534c0e10cabe (diff)
patch 9.0.0206: redraw flags are not named specificallyv9.0.0206
Problem: Redraw flags are not named specifically. Solution: Prefix "UPD_" to the flags, for UPDate_screen().
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/edit.c b/src/edit.c
index c3aa888780..0b0d174f36 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -4701,7 +4701,7 @@ ins_up(
|| old_topfill != curwin->w_topfill
#endif
)
- redraw_later(VALID);
+ redraw_later(UPD_VALID);
start_arrow(&tpos);
can_cindent = TRUE;
}
@@ -4758,7 +4758,7 @@ ins_down(
|| old_topfill != curwin->w_topfill
#endif
)
- redraw_later(VALID);
+ redraw_later(UPD_VALID);
start_arrow(&tpos);
can_cindent = TRUE;
}
@@ -5283,7 +5283,7 @@ ins_ctrl_ey(int tc)
scrolldown_clamp();
else
scrollup_clamp();
- redraw_later(VALID);
+ redraw_later(UPD_VALID);
}
else
{