summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominique Pelle <dominique.pelle@gmail.com>2022-01-17 11:23:45 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-17 11:23:45 +0000
commite8741a73e20cd6043dd1610fb4c22ae9d132eb56 (patch)
treef030e86830aa549f2d27455af03f559933576a06
parent0023f82a76cf43a12b41e71f97a2e860d0444e1b (diff)
patch 8.2.4119: build failure when disabling the channel featurev8.2.4119
Problem: Build failure when disabling the channel feature. Solution: Adjust #ifdef. (Dominique Pellé, closes #9545)
-rw-r--r--src/misc2.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
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
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4119,
+/**/
4118,
/**/
4117,