From c1d463fcafbe0efa9708d799e68f0cef0c4f7fb5 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sun, 16 Jun 2024 05:52:00 +0800 Subject: [PATCH] vim-patch:52f2ff0: 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 :/ https://github.com/vim/vim/commit/52f2ff03636fe120f3c9d00e9b3cdc1da251bd73 Co-authored-by: Christian Brabandt --- runtime/autoload/zip.vim | 1 - 1 file changed, 1 deletion(-) 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','')