# HG changeset patch # User Bram Moolenaar # Date 1634490904 -7200 # Node ID 94a8f120a06e16d876c3b39ddec30836532b308e # Parent ce5cb341defd3710e93f744ee56a696adf4f5131 patch 8.2.3531: command line completion test fails on MS-Windows Commit: https://github.com/vim/vim/commit/39c47c310487b72bc78ff197b5a068a0bcf830de Author: Bram Moolenaar Date: Sun Oct 17 18:05:26 2021 +0100 patch 8.2.3531: command line completion test fails on MS-Windows Problem: Command line completion test fails on MS-Windows. Solution: Do not test with "\{" on MS-Windows. diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -901,10 +901,13 @@ func Test_cmdline_complete_various() call assert_equal("\"unlet one two", @:) " completion for the :buffer command with curlies - edit \{someFile} - call feedkeys(":buf someFile\\\"\", 'xt') - call assert_equal("\"buf {someFile}", @:) - bwipe {someFile} + " FIXME: what should happen on MS-Windows? + if !has('win32') + edit \{someFile} + call feedkeys(":buf someFile\\\"\", 'xt') + call assert_equal("\"buf {someFile}", @:) + bwipe {someFile} + endif " completion for the :bdelete command call feedkeys(":bdel a b c\\\"\", 'xt') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3531, +/**/ 3530, /**/ 3529,