diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-05-28 20:02:48 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-05-28 20:02:48 +0000 |
commit | 0356c8c90ef2bc1b4fd71936cf0531c5498e5ff3 (patch) | |
tree | 354194d9be1b02f0a4f9661ff942e71f4cd1f635 /src | |
parent | 497683bc34549cea1189888a4e326aef516ba89f (diff) | |
download | vim-0356c8c90ef2bc1b4fd71936cf0531c5498e5ff3.zip |
updated for version 7.1-302
Diffstat (limited to 'src')
-rw-r--r-- | src/ex_getln.c | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index b575e2998..213f2d61c 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -3656,7 +3656,11 @@ ExpandEscape(xp, str, numfiles, files, options) #endif } } +#ifdef BACKSLASH_IN_FILENAME + p = vim_strsave_fnameescape(files[i], FALSE); +#else p = vim_strsave_fnameescape(files[i], xp->xp_shell); +#endif if (p != NULL) { vim_free(files[i]); diff --git a/src/version.c b/src/version.c index e7c0d761e..7383764b7 100644 --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 302, +/**/ 301, /**/ 300, |