summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-10-17 18:05:26 +0100
committerBram Moolenaar <Bram@vim.org>2021-10-17 18:05:26 +0100
commit39c47c310487b72bc78ff197b5a068a0bcf830de (patch)
tree04e04bee0892953a76e7f8e920e73793b658db7f
parent21c1a0c2f10575dbb72fa873d33f0c1f6e170aa7 (diff)
downloadvim-git-8.2.3531.tar.gz
patch 8.2.3531: command line completion test fails on MS-Windowsv8.2.3531
Problem: Command line completion test fails on MS-Windows. Solution: Do not test with "\{" on MS-Windows.
-rw-r--r--src/testdir/test_cmdline.vim11
-rw-r--r--src/version.c2
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\<C-A>\<C-B>\"\<CR>", 'xt')
- call assert_equal("\"buf {someFile}", @:)
- bwipe {someFile}
+ " FIXME: what should happen on MS-Windows?
+ if !has('win32')
+ edit \{someFile}
+ call feedkeys(":buf someFile\<C-A>\<C-B>\"\<CR>", 'xt')
+ call assert_equal("\"buf {someFile}", @:)
+ bwipe {someFile}
+ endif
" completion for the :bdelete command
call feedkeys(":bdel a b c\<C-A>\<C-B>\"\<CR>", 'xt')
diff --git a/src/version.c b/src/version.c
index 5758bf979..fbae0194f 100644
--- 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,