From: Bram Moolenaar Date: Thu, 1 Sep 2022 16:26:17 +0000 (+0100) Subject: patch 9.0.0353: missing entry in switch X-Git-Tag: v9.0.0353 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68a635a80a4cccf5b4b7235d886159d52b08f04c;p=thirdparty%2Fvim.git patch 9.0.0353: missing entry in switch Problem: Missing entry in switch. Solution: Add ISN_ECHOWINDOW. --- diff --git a/src/version.c b/src/version.c index e576be3944..7d046d0300 100644 --- a/src/version.c +++ b/src/version.c @@ -707,6 +707,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 353, /**/ 352, /**/ diff --git a/src/vim9instr.c b/src/vim9instr.c index f20d993728..a13516bbb2 100644 --- a/src/vim9instr.c +++ b/src/vim9instr.c @@ -2245,6 +2245,7 @@ delete_instr(isn_T *isn) case ISN_ECHOCONSOLE: case ISN_ECHOERR: case ISN_ECHOMSG: + case ISN_ECHOWINDOW: case ISN_ENDTRY: case ISN_EXECCONCAT: case ISN_EXECUTE: