summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-04-28 17:21:53 +0200
committerBram Moolenaar <Bram@vim.org>2011-04-28 17:21:53 +0200
commitcca92ec8cfb16cf8341a928c9bea8ea56aa8df40 (patch)
treea2ad92670ebbbd5ab0b632608f12a98af519fd1b
parent8d2d71d4bbd7f13817e7f42ce02b31c4a17ed66f (diff)
updated for version 7.3.165v7.3.165
Problem: ":find" completion does not escape spaces in a directory name. (Isz) Solution: Add backslashes for EXPAND_FILES_IN_PATH. (Carlo Teubner)
-rw-r--r--src/ex_getln.c1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 66d2ec44ab..ed45f5716f 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 8fb7cf3539..0bc4b7f736 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 165,
+/**/
164,
/**/
163,