From: Bram Moolenaar Date: Thu, 28 Apr 2011 15:21:53 +0000 (+0200) Subject: updated for version 7.3.165 X-Git-Tag: v7.3.165 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cca92ec8cfb16cf8341a928c9bea8ea56aa8df40;p=vim updated for version 7.3.165 Problem: ":find" completion does not escape spaces in a directory name. (Isz) Solution: Add backslashes for EXPAND_FILES_IN_PATH. (Carlo Teubner) --- diff --git a/src/ex_getln.c b/src/ex_getln.c index 66d2ec44a..ed45f5716 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -3702,6 +3702,7 @@ ExpandEscape(xp, str, numfiles, files, options) if (options & WILD_ESCAPE) { if (xp->xp_context == EXPAND_FILES + || xp->xp_context == EXPAND_FILES_IN_PATH || xp->xp_context == EXPAND_SHELLCMD || xp->xp_context == EXPAND_BUFFERS || xp->xp_context == EXPAND_DIRECTORIES) diff --git a/src/version.c b/src/version.c index 8fb7cf353..0bc4b7f73 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 165, /**/ 164, /**/