From 16b51d26fe2cc3afb09afd439069220dea74581d Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Mon, 21 Feb 2022 17:56:33 +0000 Subject: [PATCH] patch 8.2.4434: duplicate check for cmdline window Problem: Duplicate check for cmdline window. Solution: Remove the second check. (Sean Dewar, closes #9816) --- src/version.c | 2 ++ src/window.c | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/version.c b/src/version.c index 751ae6b7b..6d75667f6 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4434, /**/ 4433, /**/ diff --git a/src/window.c b/src/window.c index f644f9b8c..7da7b89e8 100644 --- a/src/window.c +++ b/src/window.c @@ -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) -- 2.50.1