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.
diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim
index 70fbe01..e6c7ec0 100644
--- a/src/testdir/test_autocmd.vim
+++ b/src/testdir/test_autocmd.vim
@@ -1618,7 +1618,7 @@
write
au! BufWritePre
- if executable('cat')
+ if has('unix')
write XtestFilter
write >> XtestFilter
diff --git a/src/version.c b/src/version.c
index 2609eb7..a0f4593 100644
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1369,
+/**/
1368,
/**/
1367,