mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 9.0.1571: RedrawingDisabled not used consistently
Problem: RedrawingDisabled not used consistently. Solution: Avoid RedrawingDisabled going negative. Set RedrawingDisabled in win_split_ins(). (closes #11961)
This commit is contained in:
@@ -3829,7 +3829,8 @@ jumpto_tag(
|
||||
if (win_split(postponed_split > 0 ? postponed_split : 0,
|
||||
postponed_split_flags) == FAIL)
|
||||
{
|
||||
--RedrawingDisabled;
|
||||
if (RedrawingDisabled > 0)
|
||||
--RedrawingDisabled;
|
||||
goto erret;
|
||||
}
|
||||
RESET_BINDING(curwin);
|
||||
@@ -4032,11 +4033,13 @@ jumpto_tag(
|
||||
}
|
||||
#endif
|
||||
|
||||
--RedrawingDisabled;
|
||||
if (RedrawingDisabled > 0)
|
||||
--RedrawingDisabled;
|
||||
}
|
||||
else
|
||||
{
|
||||
--RedrawingDisabled;
|
||||
if (RedrawingDisabled > 0)
|
||||
--RedrawingDisabled;
|
||||
got_int = FALSE; // don't want entering window to fail
|
||||
|
||||
if (postponed_split) // close the window
|
||||
|
Reference in New Issue
Block a user