summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-07 14:27:38 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-07 14:27:38 +0100
commit835dc636a5350f610b62f110227d2363b5b2880a (patch)
treed14dbbe08553b530c8fd593844a34c244a05677d /src/feature.h
parentc5f98ee987ae0c369867cf6cc581c766d3c0226d (diff)
patch 7.4.1274v7.4.1274
Problem: Cannot run a job. Solution: Add job_start(), job_status() and job_stop(). Currently only works for Unix.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h
index ca81d89723..19425ed355 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -1255,13 +1255,20 @@
#endif
/*
- * The Channel feature requires +eval.
+ * The +channel feature requires +eval.
*/
#if !defined(FEAT_EVAL) && defined(FEAT_CHANNEL)
# undef FEAT_CHANNEL
#endif
/*
+ * The +job feature requires Unix and +eval.
+ */
+#if defined(UNIX) && defined(FEAT_EVAL)
+# define FEAT_JOB
+#endif
+
+/*
* +signs Allow signs to be displayed to the left of text lines.
* Adds the ":sign" command.
*/