0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00

patch 8.2.4434: duplicate check for cmdline window

Problem:    Duplicate check for cmdline window.
Solution:   Remove the second check. (Sean Dewar, closes #9816)
This commit is contained in:
Sean Dewar 2022-02-21 17:56:33 +00:00 committed by Bram Moolenaar
parent 83e36c8606
commit 16b51d26fe
2 changed files with 2 additions and 1 deletions

View File

@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4434,
/**/
4433,
/**/

View File

@ -4324,7 +4324,6 @@ goto_tabpage(int n)
text_locked_msg();
return;
}
CHECK_CMDWIN;
// If there is only one it can't work.
if (first_tabpage->tp_next == NULL)