commit | 8f5c6f003ade1d481c4db0f2e2fffac209dce77c | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Jun 29 12:57:06 2012 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Jun 29 12:57:06 2012 +0200 |
tree | 08451eff36f69551b8507dcf07397c796d9c5f27 | |
parent | db91395312a02527ed973c8376d8e26e5b63ff53 [diff] [blame] |
updated for version 7.3.570 Problem: ":vimgrep" does not obey 'wildignore'. Solution: Apply 'wildignore' and 'suffixes' to ":vimgrep". (Ingo Karkat)
diff --git a/src/quickfix.c b/src/quickfix.c index bbcebe4..a1c4fe5 100644 --- a/src/quickfix.c +++ b/src/quickfix.c
@@ -3189,7 +3189,7 @@ ; /* 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) {