We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bb4e74 commit f46bf52Copy full SHA for f46bf52
2 files changed
src/job.c
@@ -887,6 +887,11 @@ job_any_running()
887
}
888
#endif
889
890
+// Unix uses argv[] for the command, other systems use a string.
891
+#if defined(UNIX)
892
+# define USE_ARGV
893
+#endif
894
+
895
#if !defined(USE_ARGV) || defined(PROTO)
896
/*
897
* Escape one argument for an external command.
@@ -1269,9 +1274,7 @@ job_start(
1269
1274
char **argv = NULL;
1270
1275
int argc = 0;
1271
1276
int i;
1272
-#if defined(UNIX)
1273
-# define USE_ARGV
-#else
1277
+#ifndef USE_ARGV
1278
garray_T ga;
1279
1280
jobopt_T opt;
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 2118,
755
/**/
756
2117,
757
0 commit comments