summaryrefslogtreecommitdiff
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-07 19:57:16 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-07 19:57:16 +0100
commit942d6b22686858c9e72f8b8929df5c288170179c (patch)
treeb5a7516b875c224804925d8461b1859b8528472c /src/feature.h
parent768ce2435ae956041579ef2d26e3e9d3a2444e1e (diff)
downloadvim-git-942d6b22686858c9e72f8b8929df5c288170179c.tar.gz
patch 7.4.1283v7.4.1283
Problem: The job feature isn't available on MS-Windows. Solution: Add the job feature. Fix argument of job_stop(). (Yasuhiro Matsumoto)
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature.h b/src/feature.h
index 19425ed35..e1f8e27b7 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -1262,9 +1262,9 @@
#endif
/*
- * The +job feature requires Unix and +eval.
+ * The +job feature requires +eval and Unix or MS-Widndows.
*/
-#if defined(UNIX) && defined(FEAT_EVAL)
+#if (defined(UNIX) || defined(WIN32)) && defined(FEAT_EVAL)
# define FEAT_JOB
#endif