forked from aniani/vim
patch 7.4.1283
Problem: The job feature isn't available on MS-Windows.
Solution: Add the job feature. Fix argument of job_stop(). (Yasuhiro
Matsumoto)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user