From 0356c8c90ef2bc1b4fd71936cf0531c5498e5ff3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 28 May 2008 20:02:48 +0000 Subject: [PATCH] updated for version 7.1-302 --- src/ex_getln.c | 4 ++++ src/version.c | 2 ++ 2 files changed, 6 insertions(+) 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 @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 302, /**/ 301, /**/ -- 2.50.1