diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-04-25 16:50:48 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-04-25 16:50:48 +0200 |
commit | 68a33fc7042106e7a1c4ddd9797b158d34905af9 (patch) | |
tree | b295393010cc98d78e994e4d38e1539546812c9c /src/feature.h | |
parent | 720ce53af0a1bf433bef91521771de77de6d8077 (diff) | |
download | vim-68a33fc7042106e7a1c4ddd9797b158d34905af9.zip |
updated for version 7.3.505
Problem: Test 11 fails on MS-Windows in some versions.
Solution: Fix #ifdefs for whether filtering through a pipe is possible. Move
setting b_no_eol_lnum back to where it was before patch 7.3.124.
(David Pope)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h index 6d5387ed0..d13e62142 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1316,3 +1316,11 @@ #ifdef FEAT_NORMAL # define FEAT_PERSISTENT_UNDO #endif + +/* + * +filterpipe + */ +#if (defined(UNIX) && !defined(USE_SYSTEM)) \ + || (defined(WIN3264) && defined(FEAT_GUI_W32)) +# define FEAT_FILTERPIPE +#endif |