From a4d158b3c839e96ed98ff87c7b7124ff4518c4ff Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 14 Aug 2022 14:17:45 +0100 Subject: patch 9.0.0206: redraw flags are not named specifically Problem: Redraw flags are not named specifically. Solution: Prefix "UPD_" to the flags, for UPDate_screen(). --- src/edit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/edit.c') diff --git a/src/edit.c b/src/edit.c index c3aa88878..0b0d174f3 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 { -- cgit v1.2.1