From 14ddd226daa324831e1872c352452f202fd6068c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 5 Aug 2020 12:02:40 +0200 Subject: [PATCH] patch 8.2.1369: MS-Windows: autocommand test sometimes fails Problem: MS-Windows: autocommand test sometimes fails. Solution: Do not rely on the cat command. --- src/testdir/test_autocmd.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim index 70fbe01c0..e6c7ec03c 100644 --- a/src/testdir/test_autocmd.vim +++ b/src/testdir/test_autocmd.vim @@ -1618,7 +1618,7 @@ func Test_change_mark_in_autocmds() write au! BufWritePre - if executable('cat') + if has('unix') write XtestFilter write >> XtestFilter diff --git a/src/version.c b/src/version.c index 2609eb7e0..a0f4593b2 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1369, /**/ 1368, /**/ -- 2.50.1