From: Christian Brabandt Date: Sat, 15 Jun 2024 14:05:35 +0000 (+0200) Subject: runtime(zip): revert unintended change to zip#Write() X-Git-Tag: v9.1.0492~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52f2ff03636fe120f3c9d00e9b3cdc1da251bd73;p=thirdparty%2Fvim.git runtime(zip): revert unintended change to zip#Write() This was wrongly included as of patch 1c6734291295bf8aa39577840b40bb because apparently I messed up the use of git apply :/ Signed-off-by: Christian Brabandt --- diff --git a/runtime/autoload/zip.vim b/runtime/autoload/zip.vim index fdd1a155ff..d0e706e83a 100644 --- a/runtime/autoload/zip.vim +++ b/runtime/autoload/zip.vim @@ -307,7 +307,6 @@ fun! zip#Write(fname) if has("unix") let zipfile = substitute(a:fname,'zipfile://\(.\{-}\)::[^\\].*$','\1','') let fname = substitute(a:fname,'zipfile://.\{-}::\([^\\].*\)$','\1','') - let fname = fnameescape(fname) else let zipfile = substitute(a:fname,'^.\{-}zipfile://\(.\{-}\)::[^\\].*$','\1','') let fname = substitute(a:fname,'^.\{-}zipfile://.\{-}::\([^\\].*\)$','\1','')