summaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-01-30 18:09:06 +0100
committerBram Moolenaar <Bram@vim.org>2021-01-30 18:09:06 +0100
commitf8c6a1718007432812184c28495e8d27ee6c0395 (patch)
tree301e5a7b0b80b406610881f02be24c3460674d5b /src/quickfix.c
parent59ff64079b4fcf0393a7413e3242a8b58c2ceadb (diff)
downloadvim-git-f8c6a1718007432812184c28495e8d27ee6c0395.tar.gz
patch 8.2.2430: :vimgrep expands wildcards twicev8.2.2430
Problem: :vimgrep expands wildcards twice. Solution: Do not expand wildcards a second time.
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 f22d2bf3c..742a1ee71 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -6053,7 +6053,7 @@ vgr_process_args(
return FAIL;
}
- // parse the list of arguments
+ // Parse the list of arguments, wildcards have already been expanded.
if (get_arglist_exp(p, &args->fcount, &args->fnames, TRUE) == FAIL)
return FAIL;
if (args->fcount == 0)