From e8741a73e20cd6043dd1610fb4c22ae9d132eb56 Mon Sep 17 00:00:00 2001 From: Dominique Pelle Date: Mon, 17 Jan 2022 11:23:45 +0000 Subject: [PATCH] patch 8.2.4119: build failure when disabling the channel feature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: Build failure when disabling the channel feature. Solution: Adjust #ifdef. (Dominique Pellé, closes #9545) --- src/misc2.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/misc2.c b/src/misc2.c index 971fbdf797..26d3657713 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -2902,7 +2902,6 @@ mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc) return OK; } -# if defined(FEAT_JOB_CHANNEL) || defined(PROTO) /* * Build "argv[argc]" from the string "cmd". * "argv[argc]" is set to NULL; @@ -2929,6 +2928,7 @@ build_argv_from_string(char_u *cmd, char ***argv, int *argc) return OK; } +# if defined(FEAT_JOB_CHANNEL) || defined(PROTO) /* * Build "argv[argc]" from the list "l". * "argv[argc]" is set to NULL; diff --git a/src/version.c b/src/version.c index fe27375c76..01b8e5d3dc 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 */ +/**/ + 4119, /**/ 4118, /**/