From: Dominique Pelle Date: Mon, 17 Jan 2022 11:23:45 +0000 (+0000) Subject: patch 8.2.4119: build failure when disabling the channel feature X-Git-Tag: v8.2.4119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8741a73e20cd6043dd1610fb4c22ae9d132eb56;p=thirdparty%2Fvim.git patch 8.2.4119: build failure when disabling the channel feature Problem: Build failure when disabling the channel feature. Solution: Adjust #ifdef. (Dominique Pellé, closes #9545) --- 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, /**/