comparison src/feature.h @ 7975:7224f5e9c36a v7.4.1283

commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 7 19:57:16 2016 +0100 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)
author Christian Brabandt <cb@256bit.org>
date Sun, 07 Feb 2016 20:00:05 +0100
parents b74549818500
children 7c74cafac0a1
comparison
equal deleted inserted replaced
7974:fe554d117c7b 7975:7224f5e9c36a
1260 #if !defined(FEAT_EVAL) && defined(FEAT_CHANNEL) 1260 #if !defined(FEAT_EVAL) && defined(FEAT_CHANNEL)
1261 # undef FEAT_CHANNEL 1261 # undef FEAT_CHANNEL
1262 #endif 1262 #endif
1263 1263
1264 /* 1264 /*
1265 * The +job feature requires Unix and +eval. 1265 * The +job feature requires +eval and Unix or MS-Widndows.
1266 */ 1266 */
1267 #if defined(UNIX) && defined(FEAT_EVAL) 1267 #if (defined(UNIX) || defined(WIN32)) && defined(FEAT_EVAL)
1268 # define FEAT_JOB 1268 # define FEAT_JOB
1269 #endif 1269 #endif
1270 1270
1271 /* 1271 /*
1272 * +signs Allow signs to be displayed to the left of text lines. 1272 * +signs Allow signs to be displayed to the left of text lines.