comparison src/quickfix.c @ 3620:4f1c511e71f8 v7.3.570

updated for version 7.3.570 Problem: ":vimgrep" does not obey 'wildignore'. Solution: Apply 'wildignore' and 'suffixes' to ":vimgrep". (Ingo Karkat)
author Bram Moolenaar <bram@vim.org>
date Fri, 29 Jun 2012 12:57:06 +0200
parents bbf1fbbe4ab4
children 4f0ddf4137ee
comparison
equal deleted inserted replaced
3619:08ea0523a078 3620:4f1c511e71f8
3187 for (prevp = qi->qf_lists[qi->qf_curlist].qf_start; 3187 for (prevp = qi->qf_lists[qi->qf_curlist].qf_start;
3188 prevp->qf_next != prevp; prevp = prevp->qf_next) 3188 prevp->qf_next != prevp; prevp = prevp->qf_next)
3189 ; 3189 ;
3190 3190
3191 /* parse the list of arguments */ 3191 /* parse the list of arguments */
3192 if (get_arglist_exp(p, &fcount, &fnames) == FAIL) 3192 if (get_arglist_exp(p, &fcount, &fnames, TRUE) == FAIL)
3193 goto theend; 3193 goto theend;
3194 if (fcount == 0) 3194 if (fcount == 0)
3195 { 3195 {
3196 EMSG(_(e_nomatch)); 3196 EMSG(_(e_nomatch));
3197 goto theend; 3197 goto theend;