summaryrefslogtreecommitdiff
path: root/src/spell.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/spell.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/spell.c')
-rw-r--r--src/spell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c
index f0f258a7c..ea47b1b2f 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -8553,7 +8553,7 @@ ex_mkspell(eap)
}
/* Expand all the remaining arguments (e.g., $VIMRUNTIME). */
- if (get_arglist_exp(arg, &fcount, &fnames) == OK)
+ if (get_arglist_exp(arg, &fcount, &fnames, FALSE) == OK)
{
mkspell(fcount, fnames, ascii, eap->forceit, FALSE);
FreeWild(fcount, fnames);