mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.2c-002
This commit is contained in:
@@ -2832,11 +2832,13 @@ fnameescape({string}) *fnameescape()*
|
||||
For most systems the characters escaped are
|
||||
" \t\n*?[{`$\\%#'\"|!<". For systems where a backslash
|
||||
appears in a filename, it depends on the value of 'isfname'.
|
||||
A leading '+' and '>' is also escaped (special after |:edit|
|
||||
and |:write|). And a "-" by itself (special after |:cd|).
|
||||
Example: >
|
||||
:let fname = 'some str%nge|name'
|
||||
:let fname = '+some str%nge|name'
|
||||
:exe "edit " . fnameescape(fname)
|
||||
< results in executing: >
|
||||
edit some\ str\%nge\|name
|
||||
edit \+some\ str\%nge\|name
|
||||
|
||||
fnamemodify({fname}, {mods}) *fnamemodify()*
|
||||
Modify file name {fname} according to {mods}. {mods} is a
|
||||
|
@@ -3717,7 +3717,7 @@ vim_strsave_fnameescape(fname, shell)
|
||||
if ((*p != '[' && *p != '{') || !vim_isfilec(*p))
|
||||
buf[j++] = *p;
|
||||
buf[j] = NUL;
|
||||
return vim_strsave_escaped(fname, buf);
|
||||
p = vim_strsave_escaped(fname, buf);
|
||||
#else
|
||||
p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS);
|
||||
if (shell && csh_like_shell() && p != NULL)
|
||||
@@ -3730,8 +3730,14 @@ vim_strsave_fnameescape(fname, shell)
|
||||
vim_free(p);
|
||||
p = s;
|
||||
}
|
||||
return p;
|
||||
#endif
|
||||
|
||||
/* '>' and '+' are special at the start of some commands, e.g. ":edit" and
|
||||
* ":write". "cd -" has a special meaning. */
|
||||
if (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL))
|
||||
escape_fname(&p);
|
||||
|
||||
return p;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@@ -676,6 +676,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2,
|
||||
/**/
|
||||
1,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user