Skip to content

Commit

Permalink
patch 8.2.4119: build failure when disabling the channel feature
Browse files Browse the repository at this point in the history
Problem:    Build failure when disabling the channel feature.
Solution:   Adjust #ifdef. (Dominique Pellé, closes #9545)
  • Loading branch information
dpelle authored and brammool committed Jan 17, 2022
1 parent 0023f82 commit e8741a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/misc2.c
Expand Up @@ -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;
Expand All @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4119,
/**/
4118,
/**/
Expand Down

0 comments on commit e8741a7

Please sign in to comment.