# HG changeset patch # User Bram Moolenaar # Date 1559629806 -7200 # Node ID 4ba323df874a7e029ad1a78257a1599a7d56d605 # Parent 133eb304453ea3e054b6f58875cc938f103366a8 patch 8.1.1462: MS-Windows: using special character requires quoting commit https://github.com/vim/vim/commit/c974022c31e790136c62586eb0b0ace2d02d2afb Author: Bram Moolenaar Date: Tue Jun 4 08:22:53 2019 +0200 patch 8.1.1462: MS-Windows: using special character requires quoting Problem: MS-Windows: using special character requires quoting. Solution: Add quotes. (Ken Takata) diff --git a/src/testdir/test_environ.vim b/src/testdir/test_environ.vim --- a/src/testdir/test_environ.vim +++ b/src/testdir/test_environ.vim @@ -36,7 +36,7 @@ func Test_external_env() call setenv('FOO', v:null) if has('win32') - let result = system('set | findstr ^FOO=') + let result = system('set | findstr "^FOO="') else let result = system('env | grep ^FOO=') endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -768,6 +768,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1462, +/**/ 1461, /**/ 1460,