runtime(zip): revert unintended change to zip#Write() Commit: https://github.com/vim/vim/commit/52f2ff03636fe120f3c9d00e9b3cdc1da251bd73 Author: Christian Brabandt <c...@256bit.org> Date: Sat Jun 15 16:05:35 2024 +0200
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 <c...@256bit.org> diff --git a/runtime/autoload/zip.vim b/runtime/autoload/zip.vim index fdd1a155f..d0e706e83 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://\(.\{-}\)::[^\].*$',' ','') let fname = substitute(a:fname,'zipfile://.\{-}::\([^\].*\)$',' ','') - let fname = fnameescape(fname) else let zipfile = substitute(a:fname,'^.\{-}zipfile://\(.\{-}\)::[^\].*$',' ','') let fname = substitute(a:fname,'^.\{-}zipfile://.\{-}::\([^\].*\)$',' ','') -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/E1sIUBL-00EZgg-3G%40256bit.org.