comparison src/globals.h @ 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 8874cb642b70
children d7b9c0b1ae3e
comparison
equal deleted inserted replaced
29811:4a20a89bf324 29812:68ef14b21d01
598 EXTERN int diff_foldcolumn INIT(= 2); // 'foldcolumn' for diff mode 598 EXTERN int diff_foldcolumn INIT(= 2); // 'foldcolumn' for diff mode
599 EXTERN int diff_need_scrollbind INIT(= FALSE); 599 EXTERN int diff_need_scrollbind INIT(= FALSE);
600 #endif 600 #endif
601 601
602 // While redrawing the screen this flag is set. It means the screen size 602 // While redrawing the screen this flag is set. It means the screen size
603 // ('lines' and 'rows') must not be changed. 603 // ('lines' and 'rows') must not be changed and prevents recursive updating.
604 EXTERN int updating_screen INIT(= FALSE); 604 EXTERN int updating_screen INIT(= FALSE);
605
606 // While computing a statusline and the like we do not want any w_redr_type or
607 // must_redraw to be set.
608 EXTERN int redraw_not_allowed INIT(= FALSE);
605 609
606 #ifdef MESSAGE_QUEUE 610 #ifdef MESSAGE_QUEUE
607 // While closing windows or buffers messages should not be handled to avoid 611 // While closing windows or buffers messages should not be handled to avoid
608 // using invalid windows or buffers. 612 // using invalid windows or buffers.
609 EXTERN int dont_parse_messages INIT(= FALSE); 613 EXTERN int dont_parse_messages INIT(= FALSE);