1
0
forked from aniani/vim

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

@@ -24,16 +24,19 @@ Most code can be found in a file with an obvious name (incomplete list):
fold.c folding
getchar.c getting characters and key mapping
mark.c marks
mbyte.c multy-byte character handling
memfile.c storing lines for buffers in a swapfile
memline.c storing lines for buffers in memory
menu.c menus
message.c (error) messages
mbyte.c multy-byte character handling
ops.c handling operators ("d", "y", "p")
option.c options
quickfix.c quickfix commands (":make", ":cn")
regexp.c pattern matching
screen.c updating the windows
search.c pattern searching
spell.c spell checking
syntax.c syntax and other highlighting
tag.c tags
term.c terminal handling, termcap codes
undo.c undo and redo

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;
}

File diff suppressed because it is too large Load Diff