summaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-06-29 12:57:06 +0200
committerBram Moolenaar <Bram@vim.org>2012-06-29 12:57:06 +0200
commit8f5c6f003ade1d481c4db0f2e2fffac209dce77c (patch)
tree08451eff36f69551b8507dcf07397c796d9c5f27 /src/quickfix.c
parentdb91395312a02527ed973c8376d8e26e5b63ff53 (diff)
downloadvim-git-8f5c6f003ade1d481c4db0f2e2fffac209dce77c.tar.gz
updated for version 7.3.570v7.3.570
Problem: ":vimgrep" does not obey 'wildignore'. Solution: Apply 'wildignore' and 'suffixes' to ":vimgrep". (Ingo Karkat)
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index bbcebe4e2..a1c4fe5c5 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -3189,7 +3189,7 @@ ex_vimgrep(eap)
;
/* parse the list of arguments */
- if (get_arglist_exp(p, &fcount, &fnames) == FAIL)
+ if (get_arglist_exp(p, &fcount, &fnames, TRUE) == FAIL)
goto theend;
if (fcount == 0)
{