mirror of
https://github.com/vim/vim.git
synced 2025-10-02 05:04:20 -04:00
patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Problem: Assert_fails() setting emsg_silent changes normal execution. Solution: Use a separate flag in_assert_fails.
This commit is contained in:
@@ -2490,7 +2490,8 @@ check_for_delay(int check_msg_scroll)
|
||||
{
|
||||
if ((emsg_on_display || (check_msg_scroll && msg_scroll))
|
||||
&& !did_wait_return
|
||||
&& emsg_silent == 0)
|
||||
&& emsg_silent == 0
|
||||
&& !in_assert_fails)
|
||||
{
|
||||
out_flush();
|
||||
ui_delay(1006L, TRUE);
|
||||
|
Reference in New Issue
Block a user