diff --git a/src/misc2.c b/src/misc2.c index 2056700e4f..a7f52e55eb 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -3095,7 +3095,9 @@ build_argv_from_string(char_u *cmd, char ***argv, int *argc) return OK; } -# if defined(FEAT_JOB_CHANNEL) +#endif + +#if defined(FEAT_EVAL) /* * Build "argv[argc]" from the list "l". * "argv[argc]" is set to NULL; @@ -3130,7 +3132,6 @@ build_argv_from_list(list_T *l, char ***argv, int *argc) (*argv)[*argc] = NULL; return OK; } -# endif #endif /* diff --git a/src/os_win32.c b/src/os_win32.c index 3d5b095c3c..431d3b5482 100644 --- a/src/os_win32.c +++ b/src/os_win32.c @@ -5960,7 +5960,9 @@ create_pipe_pair(HANDLE handles[2]) return TRUE; } -# if defined(FEAT_EVAL) +#endif // FEAT_JOB_CHANNEL + +#if defined(FEAT_EVAL) /* * Execute "argv" directly without the shell and return the output. * Used by system() and systemlist() when the command is a List. @@ -6171,8 +6173,9 @@ done: CloseHandle(hChildStdinRd); return buffer; } -# endif +#endif // FEAT_EVAL +#if defined(FEAT_JOB_CHANNEL) void mch_job_start(char *cmd, job_T *job, jobopt_T *options) { diff --git a/src/version.c b/src/version.c index f761cbd30c..862b5b12ae 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 251, /**/ 250, /**/