From 6bab9fa19aac7cfe6b9fd9fb295651ff1d07d87e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 22 Jan 2009 20:32:12 +0000 Subject: [PATCH] updated for version 7.2-087 --- src/misc2.c | 3 ++- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/misc2.c b/src/misc2.c index 76fe2ec51..427708c04 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -4696,7 +4696,8 @@ vim_findfile(search_ctx_arg) stackp->ffs_filearray_cur = i + 1; ff_push(search_ctx, stackp); - simplify_filename(file_path); + if (!path_with_url(file_path)) + simplify_filename(file_path); if (mch_dirname(ff_expand_buffer, MAXPATHL) == OK) { diff --git a/src/version.c b/src/version.c index 48bfe29df..c0f593f06 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 87, /**/ 86, /**/ -- 2.50.1