From 68a635a80a4cccf5b4b7235d886159d52b08f04c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 1 Sep 2022 17:26:17 +0100 Subject: [PATCH] patch 9.0.0353: missing entry in switch Problem: Missing entry in switch. Solution: Add ISN_ECHOWINDOW. --- src/version.c | 2 ++ src/vim9instr.c | 1 + 2 files changed, 3 insertions(+) diff --git a/src/version.c b/src/version.c index e576be394..7d046d030 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 f20d99372..a13516bbb 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: