comparison src/os_unix.c @ 29732:89e1d67814a9 v9.0.0206

patch 9.0.0206: redraw flags are not named specifically Commit: https://github.com/vim/vim/commit/a4d158b3c839e96ed98ff87c7b7124ff4518c4ff Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 14 14:17:45 2022 +0100 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().
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Aug 2022 15:30:05 +0200
parents a762488a5d08
children 4291eb97e479
comparison
equal deleted inserted replaced
29731:df7f360215b7 29732:89e1d67814a9
1226 // We didn't suspend ourselves, assume we were stopped by a SIGSTOP 1226 // We didn't suspend ourselves, assume we were stopped by a SIGSTOP
1227 // signal (which can't be intercepted) and get a SIGCONT. Need to get 1227 // signal (which can't be intercepted) and get a SIGCONT. Need to get
1228 // back to a sane mode. We should redraw, but we can't really do that 1228 // back to a sane mode. We should redraw, but we can't really do that
1229 // in a signal handler, do a redraw later. 1229 // in a signal handler, do a redraw later.
1230 after_sigcont(); 1230 after_sigcont();
1231 redraw_later(CLEAR); 1231 redraw_later(UPD_CLEAR);
1232 cursor_on_force(); 1232 cursor_on_force();
1233 out_flush(); 1233 out_flush();
1234 } 1234 }
1235 } 1235 }
1236 #endif 1236 #endif