changeset 27817:120f3b96fbdf v8.2.4434

patch 8.2.4434: duplicate check for cmdline window Commit: https://github.com/vim/vim/commit/16b51d26fe2cc3afb09afd439069220dea74581d Author: Sean Dewar <seandewar@users.noreply.github.com> Date: Mon Feb 21 17:56:33 2022 +0000 patch 8.2.4434: duplicate check for cmdline window Problem: Duplicate check for cmdline window. Solution: Remove the second check. (Sean Dewar, closes https://github.com/vim/vim/issues/9816)
author Bram Moolenaar <Bram@vim.org>
date Mon, 21 Feb 2022 19:00:05 +0100
parents 8c93f46bafbf
children b5760eab491e
files src/version.c src/window.c
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    4434,
+/**/
     4433,
 /**/
     4432,
--- 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)