0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.0096

This commit is contained in:
Bram Moolenaar
2005-06-28 23:23:32 +00:00
parent 9a50b1bf21
commit a1ba811ac9
5 changed files with 872 additions and 73 deletions

View File

@@ -227,6 +227,7 @@ static void ex_popup __ARGS((exarg_T *eap));
# define ex_spell ex_ni
# define ex_mkspell ex_ni
# define ex_spelldump ex_ni
# define ex_spellrepall ex_ni
#endif
#ifndef FEAT_MZSCHEME
# define ex_mzscheme ex_script_ni
@@ -4266,7 +4267,8 @@ expand_filename(eap, cmdlinep, errormsgp)
if (vim_strchr(eap->arg, '$') != NULL
|| vim_strchr(eap->arg, '~') != NULL)
{
expand_env_esc(eap->arg, NameBuff, MAXPATHL, TRUE);
expand_env_esc(eap->arg, NameBuff, MAXPATHL,
TRUE, NULL);
has_wildcards = mch_has_wildcard(NameBuff);
p = NameBuff;
}