comparison src/screen.c @ 29812:68ef14b21d01 v9.0.0245

patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete Commit: https://github.com/vim/vim/commit/471c0fa3eed4f6207d1cb7636970547bfd2eee26 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 22 15:19:16 2022 +0100 patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete Problem: Mechanism to prevent recursive screen updating is incomplete. Solution: Add "redraw_not_allowed" and set it in build_stl_str_hl(). (issue #10952)
author Bram Moolenaar <Bram@vim.org>
date Mon, 22 Aug 2022 16:30:03 +0200
parents 89e1d67814a9
children 0cc9a3001717
comparison
equal deleted inserted replaced
29811:4a20a89bf324 29812:68ef14b21d01
2904 old_Rows = screen_Rows; 2904 old_Rows = screen_Rows;
2905 #endif 2905 #endif
2906 screen_Rows = Rows; 2906 screen_Rows = Rows;
2907 screen_Columns = Columns; 2907 screen_Columns = Columns;
2908 2908
2909 must_redraw = UPD_CLEAR; // need to clear the screen later 2909 set_must_redraw(UPD_CLEAR); // need to clear the screen later
2910 if (doclear) 2910 if (doclear)
2911 screenclear2(); 2911 screenclear2();
2912 #ifdef FEAT_GUI 2912 #ifdef FEAT_GUI
2913 else if (gui.in_use 2913 else if (gui.in_use
2914 && !gui.starting 2914 && !gui.starting