From 39c47c310487b72bc78ff197b5a068a0bcf830de Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 17 Oct 2021 18:05:26 +0100 Subject: [PATCH] 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. --- src/testdir/test_cmdline.vim | 11 +++++++---- src/version.c | 2 ++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim index 5975bcdf3..9c21a205f 100644 --- 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 index 5758bf979..fbae0194f 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3531, /**/ 3530, /**/ -- 2.50.1