comparison src/spell.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 96715c3a905f
children 04736b4030ec
comparison
equal deleted inserted replaced
3619:08ea0523a078 3620:4f1c511e71f8
8551 ascii = TRUE; 8551 ascii = TRUE;
8552 arg = skipwhite(arg + 6); 8552 arg = skipwhite(arg + 6);
8553 } 8553 }
8554 8554
8555 /* Expand all the remaining arguments (e.g., $VIMRUNTIME). */ 8555 /* Expand all the remaining arguments (e.g., $VIMRUNTIME). */
8556 if (get_arglist_exp(arg, &fcount, &fnames) == OK) 8556 if (get_arglist_exp(arg, &fcount, &fnames, FALSE) == OK)
8557 { 8557 {
8558 mkspell(fcount, fnames, ascii, eap->forceit, FALSE); 8558 mkspell(fcount, fnames, ascii, eap->forceit, FALSE);
8559 FreeWild(fcount, fnames); 8559 FreeWild(fcount, fnames);
8560 } 8560 }
8561 } 8561 }