summaryrefslogtreecommitdiff
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-04-25 16:50:48 +0200
committerBram Moolenaar <Bram@vim.org>2012-04-25 16:50:48 +0200
commit68a33fc7042106e7a1c4ddd9797b158d34905af9 (patch)
treeb295393010cc98d78e994e4d38e1539546812c9c /src/ex_cmds.c
parent720ce53af0a1bf433bef91521771de77de6d8077 (diff)
downloadvim-git-68a33fc7042106e7a1c4ddd9797b158d34905af9.tar.gz
updated for version 7.3.505v7.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/ex_cmds.c')
-rw-r--r--src/ex_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 3d3f12ab4..005f28f78 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -1113,7 +1113,7 @@ do_filter(line1, line2, eap, cmd, do_in, do_out)
if (do_out)
shell_flags |= SHELL_DOOUT;
-#if (!defined(USE_SYSTEM) && defined(UNIX)) || defined(WIN3264)
+#ifdef FEAT_FILTERPIPE
if (!do_in && do_out && !p_stmp)
{
/* Use a pipe to fetch stdout of the command, do not use a temp file. */