From cca92ec8cfb16cf8341a928c9bea8ea56aa8df40 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 28 Apr 2011 17:21:53 +0200 Subject: [PATCH] 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) --- src/ex_getln.c | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) 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, /**/ -- 2.50.1