Mercurial > vim
changeset 35921:65d15c2aa04f v9.1.0663
patch 9.1.0663: tests: zip test still resets 'shellslash' option
Commit: https://github.com/vim/vim/commit/91efcd115e700725b9ebded0f5d7bc0d3fa98d9d
Author: Christian Brabandt <cb@256bit.org>
Date: Mon Aug 5 21:08:42 2024 +0200
patch 9.1.0663: tests: zip test still resets 'shellslash' option
Problem: tests: zip test still resets 'shellslash' option
Solution: Remove resetting the 'shellslash' option, the zip
plugin should now be able to handle this options
closes: #15434
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 06 Aug 2024 20:30:11 +0200 |
parents | 9a9a2203515c |
children | 2d84f92233b9 |
files | src/testdir/test_zip_plugin.vim src/version.c |
diffstat | 2 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_zip_plugin.vim +++ b/src/testdir/test_zip_plugin.vim @@ -10,8 +10,6 @@ endif runtime plugin/zipPlugin.vim def Test_zip_basic() - var _sl = &shellslash - set noshellslash ### get our zip file if !filecopy("samples/test.zip", "X.zip") @@ -134,6 +132,4 @@ def Test_zip_basic() bw - &shellslash = _sl - enddef