summaryrefslogtreecommitdiff
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-11 22:52:15 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-11 22:52:15 +0100
commit509ce2a558e7e0c03242e32e844255af52f1c821 (patch)
treea79ac8c1e42f2f9eefa81016328194a346dade06 /src/feature.h
parentde27989157f35172b25f9e01e0c147ed8f6ae3ce (diff)
downloadvim-git-509ce2a558e7e0c03242e32e844255af52f1c821.tar.gz
patch 7.4.1537v7.4.1537
Problem: Too many feature flags for pipes, jobs and channels. Solution: Only use FEAT_JOB_CHANNEL.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/feature.h b/src/feature.h
index f75322756..957bbf27d 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -1250,15 +1250,8 @@
/*
* The +channel feature requires +eval.
*/
-#if !defined(FEAT_EVAL) && defined(FEAT_CHANNEL)
-# undef FEAT_CHANNEL
-#endif
-
-/*
- * The +job feature requires +eval and Unix or MS-Windows.
- */
-#if (defined(UNIX) || defined(WIN32)) && defined(FEAT_EVAL)
-# define FEAT_JOB
+#if !defined(FEAT_EVAL) && defined(FEAT_JOB_CHANNEL)
+# undef FEAT_JOB_CHANNEL
#endif
/*