diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-06-29 12:57:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-06-29 12:57:06 +0200 |
commit | 8f5c6f003ade1d481c4db0f2e2fffac209dce77c (patch) | |
tree | 08451eff36f69551b8507dcf07397c796d9c5f27 /src/proto | |
parent | db91395312a02527ed973c8376d8e26e5b63ff53 (diff) | |
download | vim-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/proto')
-rw-r--r-- | src/proto/ex_cmds2.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index dc3bb790b..e4406d161 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -42,7 +42,7 @@ int check_changed_any __ARGS((int hidden)); int check_fname __ARGS((void)); int buf_write_all __ARGS((buf_T *buf, int forceit)); int get_arglist __ARGS((garray_T *gap, char_u *str)); -int get_arglist_exp __ARGS((char_u *str, int *fcountp, char_u ***fnamesp)); +int get_arglist_exp __ARGS((char_u *str, int *fcountp, char_u ***fnamesp, int wig)); void set_arglist __ARGS((char_u *str)); void check_arg_idx __ARGS((win_T *win)); void ex_args __ARGS((exarg_T *eap)); |