Lines Matching refs:fnames
5435 char_u **fnames; in ex_mkspell() local
5446 if (get_arglist_exp(arg, &fcount, &fnames, FALSE) == OK) in ex_mkspell()
5448 mkspell(fcount, fnames, ascii, eap->forceit, FALSE); in ex_mkspell()
5449 FreeWild(fcount, fnames); in ex_mkspell()
5890 char_u **fnames, in mkspell() argument
5922 innames = &fnames[fcount == 1 ? 0 : 1]; in mkspell()
5931 len = (int)STRLEN(fnames[0]); in mkspell()
5932 if (fcount == 1 && len > 4 && STRCMP(fnames[0] + len - 4, ".add") == 0) in mkspell()
5937 vim_snprintf((char *)wfname, MAXPATHL, "%s.spl", fnames[0]); in mkspell()
5944 fnames[0], spin.si_ascii ? (char_u *)"ascii" : spell_enc()); in mkspell()
5946 else if (len > 4 && STRCMP(fnames[0] + len - 4, ".spl") == 0) in mkspell()
5949 vim_strncpy(wfname, fnames[0], MAXPATHL - 1); in mkspell()
5954 fnames[0], spin.si_ascii ? (char_u *)"ascii" : spell_enc()); in mkspell()